Markdown's Big Brother: Say Hello to AsciiDoc
git-tower.com
Markdown's Big Brother: Say Hello to AsciiDoc
1–10 of 65 posts
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#2Congratulations, you've reinvented HTML 1.0! With if/else you're almost at DHTML.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#3I was hoping Eclipse AsciiDoc would already deliver stable spec, TCK and (new) reference implementation: https://asciidoc-wg.eclipse.org/projects/
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#4Congratulations, you've reinvented HTML 1.0! With if/else you're almost at DHTML.
What exactly is your comment about? Have you heard about asciidoc before?
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#5Any 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 (including includes). You can of course just use MyST proper, but getting to transform the AST myself how I see fit is a big win in my eyes. Pandoc does have AST and all that too, but MyST's implementation strikes the best balance for me.Re: Markdown's Big Brother: Say Hello to AsciiDoc
#6[deleted]
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#7Is there anybody here, who migrated to AsciiDoc from ORG-Mode, and could detail the reasons?
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#8Re: Markdown's Big Brother: Say Hello to AsciiDoc
#9I've been using AsciiDoc since Oxide did a podcast on their RFDs and I love it. I find it so much saner than Markdown, and it covers more usecases. I wish there were more implementations but asciidoctor works great. Hugo also supports AsciiDoc.
Re: Markdown's Big Brother: Say Hello to AsciiDoc
#10Sorry, I know this sounds like a stupid question… But I search the linked quick guide as well as the features page, but does this only support ASCII and not UTF characters?