←back to thread

191 points shibaobun | 1 comments | | HN request time: 0.32s | source
Show context
angra_mainyu ◴[] No.43671172[source]
I have yet to find a solid obsidian competitor, plugins + git repo really do cover most things.
replies(1): >>43671921 #
wrasee ◴[] No.43671921[source]
A folder of markdown docs in your favourite text editor, ftw!

+ It’s all within the editor you already know really well. Uses your existing tools.

+ Many editors have really good support for markdown built in. Treat H1’s like notes and along with modern fuzzy search for files/symbols you can easily get to any note and jump around.

+ If you want smarter [[liking]] there’s some good plugins out there to bring this to your editor.

+ Simple, future proof and no lock-in.

I’m currently enjoying markdown-oxide, an LSP for markdown docs. Captures all your notes as symbols so you can fuzzy search and “find references”, etc. supports #tags, too.

replies(4): >>43672104 #>>43672476 #>>43673187 #>>43674462 #
DonHopkins ◴[] No.43672104[source]
I have fallen in love with SVG+text Mermaid diagrams embedded in markdown code blocks, and LLMs are really great at generating them (by reading design documents and source code) and editing them with natural language commands. And they're not inaccessible unsearchable dead-end images you have to laboriously regenerate and check into the repo whenever you want to change something! ;)

Mermaid: Diagramming and charting tool: JavaScript based diagramming and charting tool that renders Markdown-inspired text definitions to create and modify diagrams dynamically.

https://mermaid.js.org/

Include diagrams in your Markdown files with Mermaid: A picture tells a thousand words. Now you can quickly create and edit diagrams in markdown using words with Mermaid support in your Markdown files.

https://github.blog/developer-skills/github/include-diagrams...

Creating diagrams: Create diagrams to convey information through charts and graphs:

https://docs.github.com/en/get-started/writing-on-github/wor...

The Official Guide to Mermaid.js:

https://github.com/PacktPublishing/The-Official-Guide-to-Mer...

replies(1): >>43672520 #
1. sandreas ◴[] No.43672520[source]
Mermaid looks amazing. Did not know gh had support just via

  ```mermaid

  ```

Thanks for mentioning this.