summaryrefslogtreecommitdiff
path: root/docs/ref
Commit message (Collapse)AuthorAgeFilesLines
* Apply feature request 63 (support anchors in rfc role).milde2019-04-151-0/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8254 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Update documentation of length units.milde2017-11-271-14/+19
| | | | | | | | The "px" length unit is defined as an absolute length (with different conversion values) by CSS and (pdf)LaTeX. Thanks to Laurin McLaurin for pointing this out. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8205 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Document docinfo transform of "author paragraphs".milde2017-11-041-4/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8193 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix :width: option for the table directives.milde2017-10-191-1/+2
| | | | | | | | | | * add table width argument in docutils.dtd * support table width argument in html and latex writers * fix support in "csv-table" directive * add test cases. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8187 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Hamonise and fix directive documentation.milde2017-10-171-7/+7
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8186 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Apply [ 121 ] Add a :width: option for the table directives.milde2017-10-061-3/+17
| | | | | | Thanks to Brecht Machiels for the patch. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8184 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fixes and test for literal block handling in LaTeX.milde2017-09-221-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8180 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Documentation update.milde2017-09-071-5/+9
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8176 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Added a test case and updated docs/ref/rst/restructuredtext.txt for ↵goodger2017-08-171-1/+25
| | | | | | interpreted text in field list field names. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8172 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* * docutils/parsers/rst/states.py: Allow embedded colons in field list field ↵goodger2017-08-161-1/+2
| | | | | | | | | names (also updated docs/ref/rst/restructuredtext.txt). * docutils/parsers/rst/directives/html.py: [Fix for bug 281:] Allow backslash-escaped colons in meta directive field list field names (also updated docs/dev/todo.txt). * Added tests for the above. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8169 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix typo. (Thanks to Benjamin Peng for spotting it.)milde2017-03-121-1/+11
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8047 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Enable validation of Docutils XML documents against the DTD:milde2017-02-131-5/+14
| | | | | | | | | | | | Use attribute type NMTOKEN instead of REFID for the `refid` attribute and NMTOKENS for `backrefs`: REFID refers to an ID type instance, however, the `ids` attribute cannot use the ID type because `XML only allows one ID per Element Type`__ and does not support a multiple-ID "IDS" attribute type. __ https://www.w3.org/TR/REC-xml/#sec-attribute-types git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8031 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* minor typo correctionsgoodger2017-02-131-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8029 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Reword inline markup recognition rules.milde2017-02-091-4/+4
| | | | | | | | | Make clear, that Unicode character categories apply to non-ASCII characters (Codepoints > 127). ASCII characters are explicitely listed in the rules. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8028 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Nit-picking fix.goodger2017-02-091-3/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8027 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* fixed bug #308goodger2017-02-081-7/+8
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8026 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Clarify use of Unicode character categories.milde2017-01-041-14/+20
| | | | | | Make generation of punctuation char samples py3k safe. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8013 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix problems with DTD.milde2016-12-311-6/+7
| | | | | | | | | | | | * align is a new attribute for the table element (was attached to the table entry) * measures may contain the percent sign (%), not allowed in NMTOKENS * documentation update Still errors with xmllint: IDREF cannot ref to "ids". An ID must be unique. There is no IDS datatype. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@8008 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Added functionality (plus tests & docs): escaped whitespace in URI contexts.goodger2016-12-161-3/+11
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7998 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Docutils Generic DTD: some corrections after test with xlmlint.milde2016-11-291-5/+6
| | | | | | More work to do, many documents still do not validate. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7978 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Documentation update.milde2016-08-031-5/+8
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7964 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Really add documentation for [ 120 ]milde2016-07-281-4/+22
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7960 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Implement feature request [ 48 ]milde2016-07-261-2/+19
| | | | | | | Add :align: option to the table directives. Thanks to Takeshi KOMIYA for the patch. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7952 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Apply [ 103 ] inline markup without word boundaries; escaping in embedded URIs.milde2016-05-251-44/+54
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7942 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Document whitespace before footnote references.milde2015-08-181-11/+12
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7907 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add crosslinks in the documentation.milde2015-08-181-5/+43
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7906 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add name of generic bibliographic fields as a "classes" attribute valuemilde2015-05-291-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7897 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add "math" and "math_block" to Docutils DTD.milde2015-04-203-14/+29
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7882 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Refine documentation of Docutils table objects.milde2015-04-192-0/+7
| | | | | | | | | Clarify why the Bug report #236 "table" node tree needs "colspec" node in "tgroup" is rejected (this is a feature, not a bug). git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7880 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix [ 266 ] creating labels/class values in description list items.milde2015-02-262-8/+47
| | | | | | | Also clarify the documentation of "class" directive and internal hyperlink targets applying to the next element also if at the end of an indented block. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7804 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Documentation update.milde2015-02-191-22/+18
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7797 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix #268 wrong synonym for sectnum directive in docs.milde2014-12-171-3/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7780 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* abbreviation doc from michaelpjonesgrubert2014-10-081-1/+43
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7772 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Address [ 249 ] and [ 250 ]. CSV table fails on python 2 with unicode.milde2014-03-201-30/+43
| | | | | | | | While the problem of Unicode characters in the options under Python 2 cannot be solved with reasonable effort, the patch improves error reporting and documents the limitation. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7747 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Syntax highlight requires a stylesheet.milde2013-03-271-3/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7643 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Treat embedded standalone hyperlinks as URI, even if ending in underscore.milde2013-03-111-9/+17
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7629 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Support embedded aliases within hyperlink references.milde2013-02-181-10/+29
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7610 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Minor documentation edits.milde2013-02-161-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7603 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add cross link to "code" role.milde2013-01-171-0/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7587 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add link to substitution definitions for inline images.milde2012-10-251-0/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7535 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add SmartQuotes transform for typographic quotes and dashes.milde2012-10-161-3/+89
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7530 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Change default of "syntax highlight" option to "long", milde2012-09-141-4/+4
| | | | | | Add basic syntax highlight styles for LaTeX and HTML. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7514 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Link documentation on how to create inline raw roles.milde2012-01-062-3/+16
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7307 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* change to :Contact: docutils-develop@lists.sourceforge.netgrubert2012-01-038-8/+8
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7302 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* corrected title & linkgoodger2011-12-141-3/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7255 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix [ 3402314 ] non-ASCII whitespace and punctuation around inline markup.milde2011-12-051-67/+67
| | | | | | | | | | | | Revision of the rules for allowed characters around inline markup start-string and end-string: Keep the carefully crafted ASCII-character set but add Unicode categories to the sets of allowed characters. This keeps the number of "false positives" requiring escaping low while making the rules simpler and international. This is a feature change. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7243 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Allow also non-ASCII whitespace characters around inline markup.milde2011-11-291-8/+9
| | | | | | | | First part of fix for [ 3402314 ] Only editorial changes to the specification, it already speaks of "whitespace". git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7232 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Minor edit of inline markup documentation (no change of behaviour).milde2011-11-251-15/+10
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7229 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* "code" option of the "include" directive, testsmilde2011-09-171-8/+23
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7129 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* reStructuredText "code" role and directivemilde2011-09-022-45/+152
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7119 929543f6-e4f2-0310-98a6-ba3bd3dd1d04