I was wondering if there is any way to write something like a quotation or a motto in org mode, in a way that is differentiated from the rest of the text. For instance, it could be indented with a specific number of spaces, and has some sort of "padding" from the rest of the text. Thank you.
1 Answer
The standard Orgmode way to write quotations are quotation blocks:
#+begin_quote This is quoted stuff. Org /formatting/ does work here. #+end_quote In HTML export uses the <blockquote> tag for such blocks. You can define the style in org-html-head if you like.
- As explained in the org-mode documentation: orgmode.org/manual/Paragraphs.html#ParagraphsChristian Herenz– Christian Herenz2020-04-23 15:11:28 +00:00Commented Apr 23, 2020 at 15:11
(font-lock-add-keywords 'org-mode '(("\"[^\"]*\"" . 'org-special-keyword)))