Changes between Initial Version and Version 1 of Ticket #12262


Ignore:
Timestamp:
Apr 22, 2015, 6:14:24 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

You'd save a net 6 characters, so the argument isn't hugely compelling. Anyway, the Trac wiki would need to support Markdown to make this happen.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12262

    • Property Status changed from new to closed
    • Property Component changed from SELECT A HACK to DoxygenPlugin
    • Property Resolution changed from to wontfix
    • Property Type changed from defect to enhancement
  • Ticket #12262 – Description

    initial v1  
    11Instead of needing to type all of this:
    22{{{
    3   {{{
    4   #!dot
    5     digraph {a -> b}
    6   }}}
     3{{{#!dot
     4  digraph {a -> b}
     5}}}
    76}}}
    87markdown that is consistent with Doxygen (and the Doxygen Trac Plugin) should be recognized like this:
    98{{{
    10   @dot
    11     digraph {a -> b}
    12   @enddot
     9@dot
     10  digraph {a -> b}
     11@enddot
    1312}}}