(require 'org-special-block-extras)
(org-defblock note
(title)
"Test"
(format
(pcase backend
(`html "
%s
%s
"))
title contents))
(org-defblock
card (name "Card" link "" image nil image-html nil)
"Card"
(cl-case backend
((html templated-html)
(concat
""
" "
(if image
(concat "
")
(concat "
" image-html "
"))
"
"
"
"
"
" name "
"
"
"
" " contents
"
"
"
"
"
"
""))
(t "ERROR")))
(provide 'extra-blocks)