summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/guile/skribilo/engine/info.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/guile/skribilo/engine/info.scm b/src/guile/skribilo/engine/info.scm
index 8647db3..ef2d448 100644
--- a/src/guile/skribilo/engine/info.scm
+++ b/src/guile/skribilo/engine/info.scm
@@ -341,6 +341,19 @@
                                     (output (markup-body n) e))))))
 
 ;*---------------------------------------------------------------------*/
+;*    ~ ...                                                           */
+;*---------------------------------------------------------------------*/
+(markup-writer '~
+  ;; FIXME: This isn't actually breakable.
+  :action (lambda (n e) (output-justified " ")))
+
+;*---------------------------------------------------------------------*/
+;*    breakable-space ...                                              */
+;*---------------------------------------------------------------------*/
+(markup-writer 'breakable-space
+  :action (lambda (n e) (output-justified " ")))
+
+;*---------------------------------------------------------------------*/
 ;*    *ornaments* ...                                                  */
 ;*---------------------------------------------------------------------*/
 (define %ornaments
@@ -353,6 +366,7 @@
      (sup       "^" "")
      (sub       "_" "")
      (code      "`" "'")
+     (tt        "`" "'")
      (samp      "`" "'")))
 
 ;*---------------------------------------------------------------------*/