|
From: <mi...@us...> - 2024-01-12 11:32:33
|
Revision: 9510
http://sourceforge.net/p/docutils/code/9510
Author: milde
Date: 2024-01-12 11:32:31 +0000 (Fri, 12 Jan 2024)
Log Message:
-----------
Style fixes and todo note.
Fix trailing backslashes and overlong lines after warning from flake8.
Add todo note and link for "Docutils Link List" updating.
Modified Paths:
--------------
trunk/docutils/docs/ref/rst/mathematics.txt
trunk/docutils/docs/user/links.txt
trunk/docutils/docutils/writers/manpage.py
Modified: trunk/docutils/docs/ref/rst/mathematics.txt
===================================================================
--- trunk/docutils/docs/ref/rst/mathematics.txt 2024-01-09 23:28:57 UTC (rev 9509)
+++ trunk/docutils/docs/ref/rst/mathematics.txt 2024-01-12 11:32:31 UTC (rev 9510)
@@ -936,7 +936,7 @@
Without additional packages, LaTeX supports "blackboard-bold" only for
capital Latin letters.
Unicode supports also small Latin letters, some Greek letters, and digits:
-`\mathbb{A \ldots Z a \ldots z}
+`\mathbb{A \ldots Z a \ldots z}
\mathbb\Gamma \mathbb{\Pi} \mathbb {\Sigma} \mathbb\gamma \mathbb \pi
\mathbb{0 \ldots 9}`.
@@ -1058,15 +1058,15 @@
.. math::
\left.( b \right) \ \bigl( b \Bigr) \ \biggl( b \Biggr)
- \quad
+ \quad
\left.[ b \right] \ \bigl[ b \Bigr] \ \biggl[ b \Biggr]
- \quad
+ \quad
\left.\{ b \right\} \ \bigl\{ b \Bigr\} \ \biggl\{ b \Biggr\}
- \quad
+ \quad
\left.\langle b \right\rangle \ \bigl\langle b \Bigr\rangle \ \biggl\langle b \Biggr\rangle
\left.\lceil b \right\rceil \ \bigl\lceil b \Bigr\rceil \ \biggl\lceil b \Biggr\rceil
- \quad
+ \quad
\left.\lfloor b \right\rfloor \ \bigl\lfloor b \Bigr\rfloor \ \biggl\lfloor b \Biggr\rfloor
\quad
\left.\lvert b \right\rvert \ \bigl\lvert b \Bigr\rvert \ \biggl\lvert b \Biggr\rvert
@@ -1083,11 +1083,11 @@
.. math::
\left.| b \right| \ \bigl| b \Bigr| \ \biggl| b \Biggr|
- \quad
+ \quad
\left.\vert b \right\vert \ \bigl\vert b \Bigr\vert \ \biggl\vert b \Biggr\vert
- \quad
+ \quad
\left.\| b \right\| \ \bigl\| b \Bigr\| \ \biggl\| b \Biggr\|
- \quad
+ \quad
\left.\Vert b \right\Vert \ \bigl\Vert b \Bigr\Vert \ \biggl\Vert b \Biggr\Vert
\left.\arrowvert b \right\arrowvert \ \bigl\arrowvert b \Bigr\arrowvert \ \biggl\arrowvert b \Biggr\arrowvert
Modified: trunk/docutils/docs/user/links.txt
===================================================================
--- trunk/docutils/docs/user/links.txt 2024-01-09 23:28:57 UTC (rev 9509)
+++ trunk/docutils/docs/user/links.txt 2024-01-12 11:32:31 UTC (rev 9510)
@@ -456,3 +456,6 @@
.. _rst2outline: https://docutils.sourceforge.io/sandbox/rst2outline/
* Pandoc_ can also be used to produce slides
+
+.. TODO: update with input from
+ https://stackoverflow.com/questions/2746692/restructuredtext-tool-support
Modified: trunk/docutils/docutils/writers/manpage.py
===================================================================
--- trunk/docutils/docutils/writers/manpage.py 2024-01-09 23:28:57 UTC (rev 9509)
+++ trunk/docutils/docutils/writers/manpage.py 2024-01-12 11:32:31 UTC (rev 9510)
@@ -1079,8 +1079,7 @@
if not self._has_a_table:
self._has_a_table = True
# the comment to hint that preprocessor tbl should be called
- self.head.insert(0, "'\\\" t\n")
- # single apostrophe, backslash, double apostroph, blank, character-t
+ self.head.insert(0, "'\\\" t\n") # ``'\" t`` + newline
def depart_table(self, node):
self.ensure_eol()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|