aboutsummaryrefslogtreecommitdiffhomepage
path: root/org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2022-02-05 22:16:38 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2022-02-05 22:16:38 -0500
commit6acf8085bea565943516e146077350fa3ea74a8b (patch)
tree3f2dd85b79a98cb5842c461fe337d0f2ed34194a /org
parentepub, navigation (diff)
quote block, footnotes, markup?
Diffstat (limited to 'org')
-rw-r--r--org/metaverse.org30
1 files changed, 21 insertions, 9 deletions
diff --git a/org/metaverse.org b/org/metaverse.org
index a3896c2..a7a1c9e 100644
--- a/org/metaverse.org
+++ b/org/metaverse.org
@@ -5937,13 +5937,22 @@ invariant() {
}
#+END_SRC
-******* quote
+******* quote WORKON
+
+- quote block identified by open an close tags
+- general markup subset
+ - NO standard (para) attributes
+ - inline markup
+ - font faces (bold, italics, underscore etc.)
+ - footnotes/endnotes
+ - links
#+NAME: meta_emitters_obj_inline_markup_munge_function_quote
#+BEGIN_SRC d
-@safe string munge_quote()(string obj_txt_in) {
- obj_txt["munge"] = obj_txt_in;
- return obj_txt["munge"];
+@safe auto munge_quote()(string obj_txt_in) {
+ TxtPlusHasFootnotesUrlsImages t = object_notes_and_links_(obj_txt_in.split("\n\n").join(" \\\\\n \\\\\n"));
+ // TxtPlusHasFootnotesUrlsImages t = object_notes_and_links_(obj_txt_in);
+ return t;
}
invariant() {
}
@@ -5960,7 +5969,9 @@ invariant() {
- footnotes/endnotes
- links
- drop spaces
-- keep newlines? (drop linebreaks (single newlines), keep parabreaks (double newlines) apply paragraph attributes)
+- keep newlines?
+ - drop linebreaks (single newlines),
+ - keep parabreaks (double newlines) apply paragraph attributes
#+NAME: meta_emitters_obj_inline_markup_munge_function_group
#+BEGIN_SRC d
@@ -5983,7 +5994,8 @@ invariant() {
- links
- keep newlines & spaces
- spaces
- - newlines? (newlines detected and kept?)
+ - newlines?
+ - newlines detected and kept?
#+NAME: meta_emitters_obj_inline_markup_munge_function_block
#+BEGIN_SRC d
@@ -6143,6 +6155,9 @@ static struct ObjInlineMarkup {
case "block":
x = munge.munge_block(obj_txt["munge"]);
goto default;
+ case "quote":
+ x = munge.munge_quote(obj_txt["munge"]);
+ goto default;
case "verse":
x = munge.munge_verse(obj_txt["munge"]);
goto default;
@@ -6152,9 +6167,6 @@ static struct ObjInlineMarkup {
case "table":
obj_txt["munge"] = munge.munge_table(obj_txt["munge"]);
break;
- case "quote":
- obj_txt["munge"] = munge.munge_quote(obj_txt["munge"]);
- break;
case "comment":
obj_txt["munge"] = munge.munge_comment(obj_txt["munge"]);
break;