Classeur.io: Re-enjoy writing, with Markdown
61–70 of 98 posts
Re: Classeur.io: Re-enjoy writing, with Markdown
#62Earlier quoted context omitted.
Can you imagine collaborating with someone who doesn't know how to use Org-mode?
Org mode works on text files that are formatted in a specific way, the basic syntax is not more or less complicated than Markdown, so you can in principle use it from any editor you want. The way I usually collaborate on things like papers / technical documentation is to assign specific sections, parts of the exposition to different people. I think it is rarely productive to edit the same part of the document at the…
If instead you had only said that YOU enjoy doing that, there would be nothing to disagree with.
Generally, I think it's a pretty good principle to refrain from making blanket statements about how other peoples' projects are unnecessary or whatever.
Re: Classeur.io: Re-enjoy writing, with Markdown
#63The UI looks and works nice. I specifically like the the markdown quick reference in the bottom right corner.
Re: Classeur.io: Re-enjoy writing, with Markdown
#64Re: Classeur.io: Re-enjoy writing, with Markdown
#65The thing that would make all these markdown editors a killer app for me is an easy way to link between documents. Something like vimwiki, where you can surround a word or group of words with "[[" "]]" and it turns that word into a [[link]]. These apps are great for editing a single document, but fall down when you want to create a notebook or set of interlinked notes.
Why not vimwiki?
Re: Classeur.io: Re-enjoy writing, with Markdown
#66I use and love Ulysses
Re: Classeur.io: Re-enjoy writing, with Markdown
#67The thing that would make all these markdown editors a killer app for me is an easy way to link between documents. Something like vimwiki, where you can surround a word or group of words with "[[" "]]" and it turns that word into a [[link]]. These apps are great for editing a single document, but fall down when you want to create a notebook or set of interlinked notes.
Well org mode in emacs allows you to do that. I expect anyone reading Hackernews is probably better served by something like org mode in emacs running on some server that is remotely accessible. Then you can use something like tramp to connect to it and edit all your notes in one place. Alternatively just put them under version control and you are able to edit them offline. I really don't see how an app that implemen…
Re: Classeur.io: Re-enjoy writing, with Markdown
#68The thing that would make all these markdown editors a killer app for me is an easy way to link between documents. Something like vimwiki, where you can surround a word or group of words with "[[" "]]" and it turns that word into a [[link]]. These apps are great for editing a single document, but fall down when you want to create a notebook or set of interlinked notes.
That's actually why we've created http://enterprisewiki.co
Re: Classeur.io: Re-enjoy writing, with Markdown
#69The thing that would make all these markdown editors a killer app for me is an easy way to link between documents. Something like vimwiki, where you can surround a word or group of words with "[[" "]]" and it turns that word into a [[link]]. These apps are great for editing a single document, but fall down when you want to create a notebook or set of interlinked notes.
You can try out brainstorm: github.com/Azeirah/brainstorm, Tags can be used to semantically link notes, or if you want to link to another note, you can just use []() markdown link syntax, each note has its own url. You can try the demo at sandstorm.io (install brainstorm as an app) Or you can try a slightly older version here: http://brainstorm-notes.meteor.com/board/Home Is that similar to what you're looking for?
Re: Classeur.io: Re-enjoy writing, with Markdown
#70The thing that would make all these markdown editors a killer app for me is an easy way to link between documents. Something like vimwiki, where you can surround a word or group of words with "[[" "]]" and it turns that word into a [[link]]. These apps are great for editing a single document, but fall down when you want to create a notebook or set of interlinked notes.
Gitbook https://www.gitbook.com/ allows relative links between markdown files. if foo.md links to bar.md with [Bar](bar.md) then Gitbook handles the conversion to the appropriate HTML file name when it generates the book. Yes it's intended for "books" but I find it pretty damn useful for anything that would benefit from a table of contents, and the ability to search...