diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-11-27 10:44:58 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-11-27 10:44:58 -0800 |
commit | 71c9316a597298415a7d4cb7f758b523ac9339cd (patch) | |
tree | 7e72e6583b612a9d426e54e269940b36a927b3a9 /tests | |
parent | cae3f8edbaac60e16152c87b93f0da317c1952f9 (diff) | |
download | pandoc-71c9316a597298415a7d4cb7f758b523ac9339cd.tar.gz |
Use [] for superscripts and subscripts in textile writer.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/writer.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/writer.textile b/tests/writer.textile index 7fcda539d..b3e2e545b 100644 --- a/tests/writer.textile +++ b/tests/writer.textile @@ -450,9 +450,9 @@ This is code: @>@, @$@, @\@, @\$@, @<html>@. -This is _strikeout_.- -Superscripts: a^bc^d a^_hello_^ a^hello there^. +Superscripts: a[^bc^]d a[^_hello_^] a[^hello there^]. -Subscripts: H~2~O, H~23~O, H~many of them~O. +Subscripts: H[~2~]O, H[~23~]O, H[~many of them~]O. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. |