org-special-block-extras
org-special-block-extras copied to clipboard
A number of new custom blocks and link types for Emacs' Org-mode ^_^
I am desperately trying to get special blocks to export to `.docx`, but it won't work. At first I thought I was missing the right backend, but then I came...
Some parts, namely `((apply))`, spoilers and all blocks, are not working when going through [org-thtml](https://github.com/juanjosegarciaripoll/org-thtml/). It's a niche, but really handy package IMO. I'd try to solve this myself, but...
An in-depth explanation can be found at #27.
Consider the following custom block: ``` #+begin_blockquote :citekey key :pages pages *This* is a /try/. #+end_blockquote ``` which was defined like this ``` (org-defblock blockquote nil (citekey "" pages "")...
Just create an alias for the failed function.
I have installed org-special-block-extras (both version 2 and the latest 20210806.154) and they state that one of their dependencies is s-1.12.0 as per (;; Package-Requires: ((s "1.12.0") (dash "2.18.0") (emacs...
Thanks for creating this wonderful package! I have used org-defblock which returns a string I want to process more later. I export the buffer, and most times it just inserts...
I'd love to have a LaTeX special block which would correctly export to the respective `\blockcquote` command. For example, ``` #+begin_bquote :key zermelo1908 :pages 20-22 This is a blockquote. #+end_bquote...
Hi, first thanks for another great org-package (I really need it!). I have some regarding the export formats (HTML and latex). When i try HTML page correctly displayed, but got...
Consider some latex derived backend: ```emacs-lisp (org-export-define-derived-backend 'mybackend 'latex ;; implementation detail ... ) ``` And a custom special block `myblock` to go with it ```emacs-lisp (defblock myblock (when (or...