diff options
| author | timehorse <timehorse@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2015-06-03 22:02:46 +0000 |
|---|---|---|
| committer | timehorse <timehorse@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2015-06-03 22:02:46 +0000 |
| commit | 3a0b21ed627af49fb0f7df063c009d3f041c9f17 (patch) | |
| tree | bfc03be9c5e8155d536f498e712894e2f2220dc3 /docutils/test/functional | |
| parent | b714bb0c03c60f901b236fc8348611ff8c671dfd (diff) | |
| download | docutils-3a0b21ed627af49fb0f7df063c009d3f041c9f17.tar.gz | |
Fix for bug number 276 ODT Writer strips classes from inline character markup when more than one class.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7899 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/functional')
| -rw-r--r-- | docutils/test/functional/expected/odt_nested_class.odt | bin | 0 -> 9138 bytes | |||
| -rw-r--r-- | docutils/test/functional/expected/odt_unnested_class.odt | bin | 0 -> 9125 bytes | |||
| -rw-r--r-- | docutils/test/functional/input/odt_nested_class.txt | 4 | ||||
| -rw-r--r-- | docutils/test/functional/input/odt_no_class.txt | 3 | ||||
| -rw-r--r-- | docutils/test/functional/input/odt_unnested_class.txt | 4 |
5 files changed, 11 insertions, 0 deletions
diff --git a/docutils/test/functional/expected/odt_nested_class.odt b/docutils/test/functional/expected/odt_nested_class.odt Binary files differnew file mode 100644 index 000000000..02d980312 --- /dev/null +++ b/docutils/test/functional/expected/odt_nested_class.odt diff --git a/docutils/test/functional/expected/odt_unnested_class.odt b/docutils/test/functional/expected/odt_unnested_class.odt Binary files differnew file mode 100644 index 000000000..95a21361d --- /dev/null +++ b/docutils/test/functional/expected/odt_unnested_class.odt diff --git a/docutils/test/functional/input/odt_nested_class.txt b/docutils/test/functional/input/odt_nested_class.txt new file mode 100644 index 000000000..cc5ebdf9c --- /dev/null +++ b/docutils/test/functional/input/odt_nested_class.txt @@ -0,0 +1,4 @@ +.. role:: action + :class: action parenthetical direction + +Hello... `(beat)`:action: ...there! diff --git a/docutils/test/functional/input/odt_no_class.txt b/docutils/test/functional/input/odt_no_class.txt new file mode 100644 index 000000000..110c2a51e --- /dev/null +++ b/docutils/test/functional/input/odt_no_class.txt @@ -0,0 +1,3 @@ +.. role:: action + +Hello... `(beat)`:action: ...there! diff --git a/docutils/test/functional/input/odt_unnested_class.txt b/docutils/test/functional/input/odt_unnested_class.txt new file mode 100644 index 000000000..ffc768b58 --- /dev/null +++ b/docutils/test/functional/input/odt_unnested_class.txt @@ -0,0 +1,4 @@ +.. role:: action + :class: action + +Hello... `(beat)`:action: ...there! |
