*** /root/trac-0.7/trac/Wiki.py	Tue May 18 08:04:52 2004
--- Wiki.py	Tue Jun  8 08:50:54 2004
***************
*** 52,57 ****
--- 52,58 ----
      _rules = [r"""(?P<bold>''')""",
                r"""(?P<italic>'')""",
                r"""(?P<underline>__)""",
+               r"""(?P<strike>--)""",
                r"""(?P<inlinecode>\{\{\{(?P<inline>.*?)\}\}\})""",
                r"""(?P<htmlescapeentity>&#[0-9]+;)""",
                r"""(?P<tickethref>#[0-9]+)""",
***************
*** 101,106 ****
--- 102,110 ----
      
      def _italic_formatter(self, match, fullmatch):
          return self.simple_tag_handler('<i>', '</i>')
+     
+     def _strike_formatter(self, match, fullmatch):
+         return self.simple_tag_handler('<strike>', '</strike>')
  
      def _underline_formatter(self, match, fullmatch):
          return self.simple_tag_handler('<span class="underline">', '</span>')

