[py-svn] r35428 - py/dist/py/rest

guido at codespeak.net guido at codespeak.net
Thu Dec 7 12:50:18 CET 2006


Author: guido
Date: Thu Dec  7 12:50:16 2006
New Revision: 35428

Modified:
   py/dist/py/rest/transform.py
Log:
Added missing handleStrong() method on html handler.


Modified: py/dist/py/rest/transform.py
==============================================================================
--- py/dist/py/rest/transform.py	(original)
+++ py/dist/py/rest/transform.py	Thu Dec  7 12:50:16 2006
@@ -151,6 +151,9 @@
     def handleEm(self, text):
         self.tagstack[-1].append(html.em(text))
 
+    def handleStrong(self, text):
+        self.tagstack[-1].append(html.strong(text))
+
     def startListItem(self, type, startlist):
         if startlist:
             nodename = type == 'o' and 'ol' or 'ul'



More information about the pytest-commit mailing list