diff options
| author | Zhanna Tsitkov <tsitkova@mit.edu> | 2013-01-11 17:17:21 -0500 |
|---|---|---|
| committer | Zhanna Tsitkov <tsitkova@mit.edu> | 2013-01-11 17:17:21 -0500 |
| commit | 98f9bf9b3107c72a65946f64b6c0f5b1aa17fb4b (patch) | |
| tree | d674c7eb0076a0785993287a4365a1c80d16e2be /doc/tools | |
| parent | 4382911e52c37f0b7efd3664505a9c7263c9d79a (diff) | |
| download | krb5-98f9bf9b3107c72a65946f64b6c0f5b1aa17fb4b.tar.gz krb5-98f9bf9b3107c72a65946f64b6c0f5b1aa17fb4b.tar.xz krb5-98f9bf9b3107c72a65946f64b6c0f5b1aa17fb4b.zip | |
Modify rst toolkit to handle "linebreak" tag
Diffstat (limited to 'doc/tools')
| -rw-r--r-- | doc/tools/doxybuilder_types.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/tools/doxybuilder_types.py b/doc/tools/doxybuilder_types.py index 0774f34e3..890dc2cc4 100644 --- a/doc/tools/doxybuilder_types.py +++ b/doc/tools/doxybuilder_types.py @@ -289,6 +289,9 @@ class DoxyTypes(object): result.append('*%s*' % e.strip()) elif e.getparent().tag == 'defname': result.append('%s, ' % e.strip()) + elif e.getparent().tag == 'linebreak': + result.append('\n*%s*\n' % e.strip()) + result = ' '.join(result) return result |
