|
From: <mi...@us...> - 2021-03-27 16:32:31
|
Revision: 8645
http://sourceforge.net/p/docutils/code/8645
Author: milde
Date: 2021-03-27 16:20:24 +0000 (Sat, 27 Mar 2021)
Log Message:
-----------
Fix typo.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docs/user/tools.txt
trunk/docutils/tools/docutils-cli.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2021-03-26 13:51:36 UTC (rev 8644)
+++ trunk/docutils/HISTORY.txt 2021-03-27 16:20:24 UTC (rev 8645)
@@ -201,7 +201,7 @@
- Run python3 test like python2 against source not the build/-directory
-* tools/docutils_cli.py
+* tools/docutils-cli.py
- New generic command line front end that allows the free selection of
reader, parser, and writer components.
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2021-03-26 13:51:36 UTC (rev 8644)
+++ trunk/docutils/RELEASE-NOTES.txt 2021-03-27 16:20:24 UTC (rev 8645)
@@ -101,7 +101,7 @@
* Installing with ``setup.py`` now requires setuptools_.
Alternatively, install with pip_.
-* The generic command line front end tool docutils_cli.py_ allows
+* The generic command line front end tool docutils-cli.py_ allows
the free selection of reader, parser, and writer components.
* New, experimental wrapper to integrate the
@@ -152,7 +152,7 @@
.. _setuptools: https://pypi.org/project/setuptools/
.. _pip: https://pypi.org/project/pip/
-.. _docutils_cli.py: docs/user/tools.html#docutils-cli-py
+.. _docutils-cli.py: docs/user/tools.html#docutils-cli-py
.. _legacy_class_functions: docs/user/config.html#legacy-class-functions
.. _graphicx_option: docs/user/config.html#graphicx-option
.. _docutils.sty: https://ctan.org/pkg/docutils
Modified: trunk/docutils/docs/user/tools.txt
===================================================================
--- trunk/docutils/docs/user/tools.txt 2021-03-26 13:51:36 UTC (rev 8644)
+++ trunk/docutils/docs/user/tools.txt 2021-03-27 16:20:24 UTC (rev 8645)
@@ -18,7 +18,7 @@
Once the Docutils package is unpacked, you will discover a "``tools``"
directory containing several front ends for common Docutils
processing.
-In addition to the all-purpose program docutils_cli.py_, Docutils has
+In addition to the all-purpose program docutils-cli.py_, Docutils has
many small front ends, each specialized for a specific "Reader" (which
knows how to interpret a file in context), a "Parser" (which
understands the syntax of the text), and a "Writer" (which knows how
@@ -60,7 +60,7 @@
Generic Command Line Front End
==============================
-docutils_cli.py
+docutils-cli.py
---------------
:Readers: Standalone, PEP
Modified: trunk/docutils/tools/docutils-cli.py
===================================================================
--- trunk/docutils/tools/docutils-cli.py 2021-03-26 13:51:36 UTC (rev 8644)
+++ trunk/docutils/tools/docutils-cli.py 2021-03-27 16:20:24 UTC (rev 8645)
@@ -28,8 +28,8 @@
from docutils.core import publish_cmdline, default_description
-description = (u'Generate documents from reStructuredText sources.'
- )
+description = u'Generate documents from reStructuredText or Markdown sources.'
+
epilog = (u'Currently, the component selection cannot be specified in the '
u'configuration file. '
u'The availability of some options depends on the selected '
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|