We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96d27fa commit d018b9bCopy full SHA for d018b9b
README.md
@@ -26,7 +26,7 @@ Djot is a light markup syntax created by John MacFarlane (creator of CommonMark
26
27
## Example
28
29
-```
+````
30
# Welcome to My Blog
31
32
This is _emphasized_ and this is *strong*.
@@ -45,7 +45,26 @@ And a code block:
45
<?php
46
echo "Hello, World!";
47
```
48
49
+
50
+**Renders as:**
51
52
+> # Welcome to My Blog
53
+>
54
+> This is _emphasized_ and this is **strong**.
55
56
+> Here's a [link to Djot](https://djot.net/) and some `inline code`.
57
58
+> - First item
59
+> - Second item
60
+> - Third item
61
62
+> > A blockquote with some wisdom.
63
64
+> ```php
65
+> <?php
66
+> echo "Hello, World!";
67
+> ```
68
69
## Requirements
70
0 commit comments