Markdown's Big Brother: Say Hello to AsciiDoc
41–50 of 65 posts
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#42What I find baffling is that we're in 2025 and people still can't make a decent, simple, interoperable WYSIWYG text editor without that markdown cancer. This crap has to be shoved at everybody's face in almost every good app because some nerds want to read code no matter what. I really despise that crap.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#43Unfortunate naming. When most devs think of "ascii" they think "oh that character encoding you shouldn't use anymore"
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#44Any Markdown implementation which allows for custom directives and is CommonMark-compliant is good enough for me. MyST, for example, lets you do :::{makeup-highlight} :lang: elixir defmodule A do def b, do: :ok end ::: :::{pygments-highlight} :lang: python class B: pass ::: Since MyST has intermediaries that just give you an AST, you have a lot more extensibility using directives and roles to do special things (inclu…
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#45What I find baffling is that we're in 2025 and people still can't make a decent, simple, interoperable WYSIWYG text editor without that markdown cancer. This crap has to be shoved at everybody's face in almost every good app because some nerds want to read code no matter what. I really despise that crap.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#46Other than inertia, what is keeping AsciiDoc from overtaking Markdown? Personally I like the ubiquity and simplicity of Markdown, but I can also see the benefits of the features AsciiDoc has to offer.
Note that markdown's whole value proposition is that it is a nice looking plaintext format, it stinks at adding any sort of semantic value to a document. realistically if you care about your documentation you will use something better than markdown. The problem is adding better structure always makes the plain text ugly and hard to read, violating the whole point of markdown. that is to say, the many efforts to add better semantics to markdown don't appear to understand the point of markdown.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#47> If you’ve been relying on Markdown and occasionally fighting its quirks, AsciiDoc might be the structured, fully-featured alternative you didn’t know you needed. No, I'm afraid it's the format I know I don't need. At least not for the kind of things I usually use markdown for. Readme files, technical documentation, moderately complex websites with templating and rendering engines - markdown works just fine. Sometim…
You don't need any paid tools if you don't want them, I used a text editor and the terminal and source control.
I don't understand the hostility toward someone offering a product. It's fine that you don't need it, that doesn't mean someone else won't.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#48Earlier quoted context omitted.
AsciiDoc is even older than Markdown.
As is org-mode. I think Markdown is one of those VHS vs Betamax kind of situations where it was just lucky to get the traction that its competitors didn't.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#49I read the 2003 book The art of Unix programming where the author praises plain text config and says hand editing xml is a human rights violation, since Notepad was the most powerful ubiquitous editor then. Markdown was best then.
https://commerce.nearform.com/open-source/spectacle/docs/api...
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#50As much as people don't really like it, reStructuredText with Sphinx is still my favorite one of these. Once you get into wanting to do fancy things, the sheer power and extensibility of it with custom directives and community plugins is hard to beat. The glossary, index, and project cross-referencing features (intersphinx) are amazing. You can easily integrate with Bibtex reference libraries (maybe managed in Zotero…