Create Mindmaps
This prompt analyzes text or PDF content, then generates a summarized mind map in both Markdown and HTML, offering a clear, visual overview.
Customize your prompt
Prompt
Analyze the entered text or PDF content and follow these steps:
1. Generate a summarized mind map structure in Dutch, with main topics, subtopics and details.
2. Create a markdown summary of the text, in which you keep this layout.
3. Use one word or short sentences for each point.
4. Add an appropriate emoji to each topic.
5. Use this markdown information and create an HTML mind map directly.
6. Create an HTML document with the following structure, placing the mind map content directly in the Markdown section:
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mindmap: [Generate a suitable title]</title>
<style>
.markmap {
width: 100%;
height: 800px;
}
</style>
</head>
<body>
<div class="markmap">
<script type="text/template">
# 🌟 Main topic 1
## 📌 Subtopic 1.1
- Detail 1.1.1
- Detail 1.1.2
# 🚀 Main topic 2
## 🔍 Subtopic 2.1
- Detail 2.1.1
- Detail 2.1.2
</script>
</div>
<script>
window.markmap = {
autoLoader: {
renderOptions: {
zoom: true,
color: ["#ff6b6b", "#4ecdc4", "#45b7d1", "#f9d56e", "#8a2be2"],
colorFreezeLevel: 1
},
},
};
</script>
<script src="https://cdn.jsdelivr.net/npm/markmap-autoloader@0.14.3"></script>
</body>
</html>
7. Return the full HTML file.
After generating the HTML mind map, ask: "The mind map has been generated. Do you want to make changes?"