mirror of
https://github.com/larstvei/ox-gfm.git
synced 2024-11-26 09:38:31 +00:00
Use triple-backtick block syntax for example blocks too
org-mode `#+BEGIN_EXAMPLE` blocks can (optionally) be tagged with a language, so this will give them proper syntax highlighting on GitHub. It still works when the language is unset, of course.
This commit is contained in:
parent
99f93011b0
commit
bd85f6a56f
@ -56,6 +56,7 @@
|
||||
:translate-alist '((inner-template . org-gfm-inner-template)
|
||||
(paragraph . org-gfm-paragraph)
|
||||
(strike-through . org-gfm-strike-through)
|
||||
(example-block . org-gfm-example-block)
|
||||
(src-block . org-gfm-src-block)
|
||||
(table-cell . org-gfm-table-cell)
|
||||
(table-row . org-gfm-table-row)
|
||||
@ -92,6 +93,10 @@ channel."
|
||||
(suffix "```"))
|
||||
(concat prefix code suffix)))
|
||||
|
||||
;;;; Example Block
|
||||
|
||||
(defalias 'org-gfm-example-block #'org-gfm-src-block)
|
||||
|
||||
|
||||
;;;; Strike-Through
|
||||
|
||||
@ -284,7 +289,7 @@ holding export options."
|
||||
(toc-string (or (mapconcat 'org-gfm-format-toc headlines "\n") ""))
|
||||
(toc-tail (if headlines "\n\n" "")))
|
||||
(org-trim (concat toc-string toc-tail contents "\n" (org-gfm-footnote-section info)))))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user