graph info added
This commit is contained in:
parent
70a293e3fd
commit
69a016d145
|
|
@ -43,6 +43,7 @@ NoteDiscovery is a **lightweight, self-hosted note-taking application** that put
|
|||
- 📂 **Simple Storage** - Plain markdown files in folders
|
||||
- 🧮 **Math Support** - LaTeX/MathJax for beautiful equations
|
||||
- 📄 **HTML Export** - Share notes as standalone HTML files
|
||||
- 🕸️ **Graph View** - Interactive visualization of connected notes
|
||||
|
||||
## 🚀 Quick Start
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<!-- Primary Meta Tags -->
|
||||
<title>NoteDiscovery - Your Self-Hosted Knowledge Base</title>
|
||||
<meta name="title" content="NoteDiscovery - Your Self-Hosted Knowledge Base">
|
||||
<meta name="description" content="A lightweight, privacy-focused Markdown note-taking application with wikilinks, LaTeX math, Mermaid diagrams, tags, templates, and code highlighting. Self-hosted, free, and open source.">
|
||||
<meta name="description" content="A lightweight, privacy-focused Markdown note-taking application with wikilinks, graph view, LaTeX math, Mermaid diagrams, tags, templates, and code highlighting. Self-hosted, free, and open source.">
|
||||
<meta name="keywords" content="note taking, markdown editor, self-hosted, knowledge base, open source, privacy, notes app, docker, second brain, obsidian alternative, notion, evernote, onenote, latex, mermaid, diagrams, math equations, templates, tags, yaml frontmatter">
|
||||
<meta name="author" content="Gamosoft">
|
||||
<meta name="robots" content="index, follow">
|
||||
|
|
@ -586,6 +586,12 @@
|
|||
<p>Link notes with [[double brackets]] Obsidian-style. Broken links shown dimmed.</p>
|
||||
</div>
|
||||
|
||||
<div class="feature">
|
||||
<div class="feature-icon">🕸️</div>
|
||||
<h3>Graph View</h3>
|
||||
<p>Interactive visualization of connected notes. Drag to explore relationships.</p>
|
||||
</div>
|
||||
|
||||
<div class="feature">
|
||||
<div class="feature-icon">📂</div>
|
||||
<h3>Simple Storage</h3>
|
||||
|
|
@ -664,6 +670,14 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="benefit-item">
|
||||
<span class="emoji">🕸️</span>
|
||||
<div class="text">
|
||||
<strong>Graph View</strong>
|
||||
Visualize note connections
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="benefit-item">
|
||||
<span class="emoji">🖼️</span>
|
||||
<div class="text">
|
||||
|
|
@ -759,7 +773,7 @@
|
|||
"url": "https://www.notediscovery.com",
|
||||
"applicationCategory": "ProductivityApplication",
|
||||
"operatingSystem": "Linux, Windows, macOS",
|
||||
"featureList": "Markdown editor, Wikilinks, LaTeX math equations, Mermaid diagrams, Code syntax highlighting, Dark mode, Plugin system, Internal links, Properties panel, HTML export, Full-text search, Self-hosted, Obsidian, Evernote, Notion, Onenote, Second brain",
|
||||
"featureList": "Markdown editor, Wikilinks, Graph view, LaTeX math equations, Mermaid diagrams, Code syntax highlighting, Dark mode, Plugin system, Internal links, Properties panel, HTML export, Full-text search, Self-hosted, Obsidian, Evernote, Notion, Onenote, Second brain",
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
|
|
|
|||
|
|
@ -28,6 +28,12 @@
|
|||
|
||||
## 🔗 Linking & Discovery
|
||||
|
||||
### Graph View
|
||||
- **Interactive graph** - Visualize all your notes and their connections
|
||||
- **Navigate with mouse** - Drag to pan, scroll to zoom, double-click nodes to open notes
|
||||
- **Multiple link types** - See wikilinks and markdown links distinguished by color
|
||||
- **Theme-aware** - Graph colors adapt to your current theme
|
||||
|
||||
### Internal Links
|
||||
- **Wikilinks** - `[[Note Name]]` Obsidian-style syntax for quick linking
|
||||
- **Wikilinks with display text** - `[[Note Name|Click here]]` to customize link text
|
||||
|
|
|
|||
Loading…
Reference in New Issue