diff options
author | Andy Wingo <wingo@pobox.com> | 2013-02-09 18:18:28 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-02-09 18:18:28 +0100 |
commit | 9cdc5cdbe6c3cdc4ae649016b8673cf038b5294e (patch) | |
tree | f5b4632015b60b5ee6cd5bdf69d24f44ec08b2f5 /module/texinfo/plain-text.scm | |
parent | d4cab459d3a479af12ad2bb37ebbead0d6806802 (diff) | |
download | guile-9cdc5cdbe6c3cdc4ae649016b8673cf038b5294e.tar.gz |
(texinfo plain-text): Pass @math{} through as-is.
* module/texinfo/plain-text.scm (tag-handlers): Pass `math' through
as-is.
Diffstat (limited to 'module/texinfo/plain-text.scm')
-rw-r--r-- | module/texinfo/plain-text.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/texinfo/plain-text.scm b/module/texinfo/plain-text.scm index 87e43e5bb..83e5e38f9 100644 --- a/module/texinfo/plain-text.scm +++ b/module/texinfo/plain-text.scm @@ -1,6 +1,6 @@ ;;;; (texinfo plain-text) -- rendering stexinfo as plain text ;;;; -;;;; Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. +;;;; Copyright (C) 2009, 2010, 2011, 2013 Free Software Foundation, Inc. ;;;; Copyright (C) 2003,2004,2009 Andy Wingo <wingo at pobox dot com> ;;;; ;;;; This library is free software; you can redistribute it and/or @@ -238,6 +238,7 @@ (sample ,code) (samp ,code) (code ,code) + (math ,passthrough) (kbd ,code) (key ,key) (var ,var) |