[Checkins] SVN: manuel/trunk/s fix some reST markup

Benji York benji at zope.com
Sun Jun 7 12:11:57 EDT 2009


Log message for revision 100708:
  fix some reST markup
  

Changed:
  U   manuel/trunk/setup.py
  U   manuel/trunk/src/manuel/table-example.txt

-=-
Modified: manuel/trunk/setup.py
===================================================================
--- manuel/trunk/setup.py	2009-06-07 16:04:31 UTC (rev 100707)
+++ manuel/trunk/setup.py	2009-06-07 16:11:57 UTC (rev 100708)
@@ -2,6 +2,14 @@
 
 from setuptools import setup, find_packages
 
+long_description = (
+    open(os.path.join('src', 'manuel', 'README.txt')).read()
+    + '\n\n'
+    + open(os.path.join('src', 'manuel', 'table-example.txt')).read()
+    + '\n\n'
+    + open('CHANGES.txt').read()
+    )
+
 setup(
     name='manuel',
     version='0',
@@ -20,11 +28,5 @@
         'zope.testing',
         ],
     include_package_data=True,
-    long_description = (
-        open(os.path.join('src', 'manuel', 'README.txt')).read()
-        + '\n\n'
-        + open(os.path.join('src', 'manuel', 'table-example.txt')).read()
-        + '\n\n'
-        + open('CHANGES.txt').read()
-        )
+    long_description = long_description,
     )

Modified: manuel/trunk/src/manuel/table-example.txt
===================================================================
--- manuel/trunk/src/manuel/table-example.txt	2009-06-07 16:04:31 UTC (rev 100707)
+++ manuel/trunk/src/manuel/table-example.txt	2009-06-07 16:11:57 UTC (rev 100708)
@@ -9,7 +9,7 @@
 
 Lets write a simple table evaluator using Manuel.
 
-We'll use `reST <http://docutils.sourceforge.net/rst.html>' tables.  The table
+We'll use `reST <http://docutils.sourceforge.net/rst.html>`_ tables.  The table
 source will look like this:
 
     =====  =====  ======
@@ -60,7 +60,7 @@
 Parsing
 -------
 
-First we need a function to find the tables::
+First we need a function to find the tables:
 
 .. code-block:: python
 



More information about the Checkins mailing list