⚇ ddot.it Markdown Reader
A ddot.it reader for Markdown text. It recognizes triples in plain text, comments, code blocks, and section attributes.
NOTE: Some examples use the ddot.it/this command.
Standard Syntax
Plain Text
My nice document.
ddot.it/this ..project.. Code Red
Comments
<!-- ddot.it/this ..project.. Code Red -->
Code Blocks
My nice document
```
ddot.it/this ..project.. Code Red
```
Extra Syntax
Ddot.it extracts triples from section attributes, too.
Section Attributes
Additionally, some extended Markdown dialects allow custom attributes for sections. They are supported in Markdown Extra (as in PHP Markdown Extra), Pandoc, and Kramdown (used in Jekyll), Hugo (via Goldmark with attribute extension enabled).
Syntax:
## My Section {#my-tag #my-other-tag .my-class .my-other-class}
these are interpreted as
My Section ..has tag.. my-tag
..has tag.. my-other-tag
..has type.. my-class
..has type.. my-other-class