-
I recently learned about markdown-oxide, which is a similar tool (PKM LSP written in Rust). I'm curious, are you aware of this tool? And what sets IWE apart from it? Is there something IWE does differently, or are they both filling the same niche? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 26 replies
-
There’s significant overlap between these two projects, but IWE has lots of unique features such as:
IWE follows Zettelkasten concept where you have a flat list of files (no directories) where file name servers more like ID than a name of a document. While (as I understand) markdown-oxide follows Obsidian way with wiki-links. IWE also includes CLI utility for batch operations and documents generation. Another key difference is the core library, which is shared between the CLI and LSP. The rich domain model allows for the easy construction of new graph transformations. |
Beta Was this translation helpful? Give feedback.
There’s significant overlap between these two projects, but IWE has lots of unique features such as:
IWE follows Zettelkasten concept where you have a flat list of files (no directories) where file name servers more like ID than a name of a document. While (as I understand) markdown-oxide follows Obsidian way with wiki-links.
IWE also includes CLI utility for batch operations and documents generation.
Another key difference is the core library, w…