|
From: <mi...@us...> - 2024-12-18 22:03:30
|
Revision: 10005
http://sourceforge.net/p/docutils/code/10005
Author: milde
Date: 2024-12-18 22:03:27 +0000 (Wed, 18 Dec 2024)
Log Message:
-----------
Small fixes.
Link in "Docutils Configuration",
class name and docstring in "html4css1" writer test.
Modified Paths:
--------------
trunk/docutils/docs/user/config.rst
trunk/docutils/test/test_writers/test_html4css1_parts.py
Modified: trunk/docutils/docs/user/config.rst
===================================================================
--- trunk/docutils/docs/user/config.rst 2024-12-18 22:03:18 UTC (rev 10004)
+++ trunk/docutils/docs/user/config.rst 2024-12-18 22:03:27 UTC (rev 10005)
@@ -87,7 +87,7 @@
Configuration File Syntax
-------------------------
-Configuration files are UTF-8-encoded text files. The ConfigParser.py_
+Configuration files are UTF-8-encoded text files. The configparser_
module from Python_'s standard library is used to read them.
From its documentation__:
@@ -99,6 +99,7 @@
[…] Configuration files may include comments, prefixed by specific
characters (``#`` and ``;`` by default).
+.. _configparser: https://docs.python.org/3/library/configparser.html
__ https://docs.python.org/3/library/configparser.html
#supported-ini-file-structure
@@ -229,8 +230,6 @@
Some knowledge of Python_ is assumed for some attributes.
-.. _ConfigParser.py:
- https://docs.python.org/3/library/configparser.html
.. _Python: https://www.python.org/
__ ../api/runtime-settings.html#active-sections
Modified: trunk/docutils/test/test_writers/test_html4css1_parts.py
===================================================================
--- trunk/docutils/test/test_writers/test_html4css1_parts.py 2024-12-18 22:03:18 UTC (rev 10004)
+++ trunk/docutils/test/test_writers/test_html4css1_parts.py 2024-12-18 22:03:27 UTC (rev 10005)
@@ -2,6 +2,7 @@
# $Id$
# Author: reggie dugard <re...@us...>
+# Maintainer: doc...@li...
# Copyright: This module has been placed in the public domain.
"""
@@ -103,8 +104,8 @@
return parts
-class Html5WriterPublishPartsTestCase(unittest.TestCase):
- """Test HTML5 writer `publish_parts()` interface."""
+class Html4WriterPublishPartsTestCase(unittest.TestCase):
+ """Test "html4css1" writer `publish_parts()` interface."""
maxDiff = None
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|