summaryrefslogtreecommitdiff
path: root/docutils/test/functional/expected/standalone_rst_html5.html
Commit message (Collapse)AuthorAgeFilesLines
* Version 0.20.2b.devgrubert2023-05-171-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9390 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.20.1grubert2023-05-161-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9388 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.20.1b.devgrubert2023-05-091-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9376 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release 0.20grubert2023-05-091-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9374 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.20rc1 grubert2023-05-041-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9372 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: Use dpub-ARIA role "doc-footnote" for footnotesmilde2022-12-011-22/+22
| | | | | | | | (instead of ARIA role "note"). No change with "html4css1". git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9292 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Raise version to 0.20b.dev.milde2022-12-011-1/+1
| | | | | | There are not only bugfix changes since 0.19, so a new "minor" release is required. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9291 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Wrap definition lists with "details" class argument in a <div>milde2022-11-281-0/+4
| | | | | | | | with the "id" and "class" values of the list node. Enables setting an "anchor" or a "class" value for "detail disclosure elments". git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9282 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Refactor HTMLTranslator initialization and parts setup.milde2022-11-131-2/+2
| | | | | | | | | | | | | | | | | Use utils.xml_declaration(). Don't write charset (encoding) declaration if the intended output encoding is not known. Copy "meta" part content into "head" in `depart_document()` (i.e. after collecting all items). Obsoletes auxiliary method `add_meta()`. Remove it. Changes to the HTML output (no space character before closing tag of XML declaration, order of metadata elements) don't affect the HTML semantics, styling, and rendering. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9240 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.19.1b.devgrubert2022-07-051-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9105 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release 0.19grubert2022-07-051-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9103 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.19b2.devgrubert2022-06-211-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9086 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release 0.19b1grubert2022-06-211-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9085 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add wrapper around groups of footnotes to facilitate styling as a list.milde2022-06-191-0/+8
| | | | | | | | Adapt style sheets and tests. Cf. bug #450. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9081 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Small fixes to HTML5 output.milde2022-04-291-2/+1
| | | | | | | | Stop writing an empty line before the "footer" closing tag. Add space before "charset" meta tag closing sequence. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9054 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Update PEP base URL and template.milde2022-03-131-1/+1
| | | | | | | | | | | | | | The canonical PEP base URL changed to "peps.python.org/". The PEP-writer template.txt added a "source" link that no longer works due to sources now only be stored on github and having two possible file extensions ("txt" or "rst"). Adapt the header to resemble the header of official PEP documents (which are now produced using Sphinx). Fixes [bug:#445]. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9045 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Write table column widths with 3 digits precision. Fixes bug #444.milde2022-02-191-3/+3
| | | | | | | | | | | | | | | Bug #444 reports visible effects of rounding errors with the current rounding to integer percentages (e.g. 7 columns 13% and one 9% for 8 columns of equal width). Allow a fractional part (1 digit) when table column widths are written as percentages in the "colgroup". Use f-string literal to format coefficient as percentage. CSS allows decimal numbers (since CSS1) in the specification of percentages. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9009 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Update base URL config settings defaults.milde2022-01-211-2/+2
| | | | | | | | | The default values for the "pep-references", "rfc-base-url", and "python-home" `configuration settings`_ now uses the "https:" scheme. Based on a patch by Adam Turner. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8960 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Change http://docutils.sourceforge.net -> https://docutils.sourceforge.iomilde2022-01-201-5/+5
| | | | | | Patch by Adam Turner. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8956 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Set version to 0.19b.dev.milde2021-12-231-1/+1
| | | | | | | | | | Leaving the 0.18 maintenance mode. Note: We may skip 0.19 if the next release is "1.0-ready" (depending on consensus on backwards compatibility policy and definition/documentation of the public part of the API). git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8914 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.18.2b0grubert2021-11-231-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8903 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.18.1grubert2021-11-231-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8900 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Version: 0.18.1b1.devgrubert2021-11-181-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8894 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Version: 0.18.1bgrubert2021-11-181-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8893 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release 0.18.1b.devgrubert2021-10-261-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8867 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.18grubert2021-10-261-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8864 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release number 0.18b2.devgrubert2021-10-051-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8848 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.18b1grubert2021-10-051-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8845 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: New default for table column widths (fixes bug #426).milde2021-10-011-46/+4
| | | | | | | | | Only specify table column widths, if the "widths" option is set and is not "auto". The `table_style`_ setting "colwidths-grid" restores the current default. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8836 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* math2html: Prefer STIX fonts for formulas.milde2021-07-121-2/+2
| | | | | | | | | | | | | | STIX is free, widely supported, and comprehensive. (On the downside: it is considerably smaller than DejaVu: no problem with Chromium/Chrome but in Firefox a larger font-size might be advised.) Work around bugs/problems in STIX: "medium mathematical space" is too wide, "vertical line" glyphs leave gaps when stacked, upright integrals provide better alignment of limits. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8798 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Major rework of math2html converter.milde2021-07-121-2/+2
| | | | | | | | | | | | | Fork from elyxer (https://github.com/alexfernandez/elyxer). Remove code that is not requried for math conversion. Fix/update LaTeX/Unicode character translation, use common codebase with MathML. Support more commands. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8793 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: small tweaksmilde2021-07-051-117/+117
| | | | | | | | | | | | | Move space character between section number and heading into "sectnum" span. Simplify code in _html_base.py. responsive.css: highlight target of current URL, show an arrow when hovering over section heading to hint at the target of toc-backlinks. Test setting `--toc_backlinks=top` and the "responsive.css" stylesheet. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8787 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: Improve accessibility of section headings.milde2021-06-301-53/+53
| | | | | | | | | | | | | | | | Mark the internal back-refences from section headings to the ToC with DPub-ARIA role "doc-backref". Use "aria-level" instead of a class argument value for section headings with nesting level > 6 (for level 1 to 6, the level is determined by the HTML tag). Mind that in HTML5, heading level 1 is reserved for the document title and section headings start with level 2. Add functional test sample for deeply nested sections. Merge functional tests for additonal HTML5 features. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8786 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: Support details disclosure elementsmilde2021-06-301-55/+74
| | | | | | | Items of a definition list with class argument "details" are converted to `details disclosure elements`. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8783 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: ARIA roles for citations and citation-references.milde2021-06-251-4/+6
| | | | | | | | | | Use <div> with DPub ARIA role "doc-biblioentry" for citations. Wrapping citations in a list (required for elements with role "doc-biblioentry"). Use role "doc-biblioref" for citation-references. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8779 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: More ARIA roles, more descriptive class name.milde2021-06-251-49/+49
| | | | | | | | | ARIA roles for footnote references and backlinks. Use class value "backrefs" instead of "fn-backref" for a span of back-references. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8777 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTM5 Use semantic tags for topics, admontions, system-messages, and toc.milde2021-06-251-40/+40
| | | | | | | | | <aside> for topics (except abstract and toc), admonitions, and system messages. <nav> and DPub Aria role="doc-toc" for the Table of Contents. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8775 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Code simplification in writers.milde2021-06-251-35/+35
| | | | | | | | | | | Use node[...] instead of node.get(...) for basic attributes. Remove HTMLTranslator.topic_classes auxiliary attribute. HTML5: Do not add "compound-first", "compound-middle", or "compound-last" to elements nested in a compound. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8774 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* HTML5: Semantic markup for footnotes.milde2021-06-251-76/+94
| | | | | | | | | | | | | | Use "aside" instead of a description list for footnotes and citations. While providing decent standard rendering, footnote label and text are no instance of a "definition term" and "definition". Use "invisible" footnote label brackets instead of display="none" with superscript footnotes so that the brackets are kept with drag-and-drop. Adapt stylesheets. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8773 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Insert "meta" nodes at begin of document.milde2021-06-171-2/+2
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8767 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* html5 writer: support field lists with custom indent.milde2021-05-201-2/+16
| | | | | | Review handling of "classes" attribute. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8735 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Write footnote brackets and field term colons to HTML.milde2021-05-201-81/+81
| | | | | | | | Makes them available also without CSS and when copying text. Hide brackets with CSS for "footnote-references=superscript". git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8734 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.18b.dev, open repository for development.milde2021-05-171-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8721 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.17.2b.devgrubert2021-04-171-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8711 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release 0.17.1grubert2021-04-171-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8705 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.17.1b2.devgrubert2021-04-091-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8688 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* version 0.17.1b1.devgrubert2021-04-091-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8687 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* set version to 0.17.1b.devgrubert2021-04-091-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8681 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* switch to 0.18b.devgrubert2021-04-031-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8660 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* release 0.17grubert2021-04-031-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8653 929543f6-e4f2-0310-98a6-ba3bd3dd1d04