You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
954 B
57 lines
954 B
+++ |
|
title = "Code-fenced source blocks with backticks" |
|
tags = ["src-block", "code-fence", "backticks"] |
|
draft = false |
|
+++ |
|
|
|
This code block contains a fenced code block with 4 backticks: |
|
|
|
`````md |
|
````emacs-lisp |
|
(message "Hello") |
|
```` |
|
````` |
|
|
|
This code block contains a fenced code block with 3 backticks: |
|
|
|
`````md |
|
```emacs-lisp |
|
(message "Hello again") |
|
``` |
|
````` |
|
|
|
This code block contains no backticks: |
|
|
|
`````emacs-lisp |
|
(message "Hello again x2") |
|
````` |
|
|
|
This code block again contains a fenced code block with 4 backticks: |
|
|
|
`````md |
|
````emacs-lisp |
|
(message "Hello again x3") |
|
```` |
|
````` |
|
|
|
This code block contains a fenced code block with 6 backticks: |
|
|
|
```````md |
|
``````emacs-lisp |
|
(message "Hello again x4") |
|
`````` |
|
``````` |
|
|
|
This code block again contains a fenced code block with 3 backticks: |
|
|
|
```````md |
|
```emacs-lisp |
|
(message "Hello again x5") |
|
``` |
|
``````` |
|
|
|
This code block once again contains no backticks: |
|
|
|
```````emacs-lisp |
|
(message "Hello again x6") |
|
```````
|
|
|