Edgewall Software

Changes between Version 34 and Version 35 of TracDev/Proposals/AdvancedWikiFormatting


Ignore:
Timestamp:
Jul 14, 2010, 11:16:11 AM (14 years ago)
Author:
Christian Boos
Comment:

a few more ideas for tables and admonitions

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/Proposals/AdvancedWikiFormatting

    v34 v35  
    66== Topics ==
    77=== Tables ===
    8  - support WikiCreole single pipe style (#6630)
     8 - support WikiCreole single pipe style (#6630) \\
     9   If we support single pipe tables, then it would be worth supporting `+----...` either as a no-op or a row separator (like `|----...`), in order to handle the following:
     10   {{{
     11   +--------------------+
     12   |  Boxed  |  Tables  |
     13   +--------------------+
     14   }}}
    915 - add `|+` MediaWiki style caption or `#!caption`
    1016 - annotation for specifying vertical alignment (top `||^` and bottom `||.`) (ticket:9309#comment:9)
    11  - also support MediaWiki style?? (#1424)
     17 - annotation for specifying vertical spans (`<|2>`)
     18   {{{
     19||<|2> 2 rows   ||    row 1 ||
     20||                    row 2 ||
     21||<-2> row 3 over 2 columns ||
     22   }}}
     23 - also support MediaWiki style??? (#1424)
    1224
    1325=== Definition lists ===
     
    95107For div and tables, add some more "standard" classes (we already have "important" for divs and "listing" for tables):
    96108 - see MoinMoin:HelpOnAdmonitions
     109 - [http://docutils.sourceforge.net/docs/ref/rst/directives.html#admonitions admonitions] and [http://docutils.sourceforge.net/docs/user/rst/demo.html#topics-sidebars-and-rubrics sidebars] in docutils. \\
     110   Note that sidebars could have their own syntax, a bit like citations (`> ...`):
     111   {{{
     112   | This will appear in a sidebar:
     113   |  - any content
     114   |    || will || do ... ||
     115   }}}
     116   which should be fully equivalent to:
     117   {{{
     118   {{{#!sidebar
     119   This will appear in a sidebar:
     120    - any content
     121      || will || do ... ||
     122   }}}
     123   }}}
    97124 - [http://meta.wikimedia.org/wiki/Help:Collapsing#Collapsible_DIV collapsible and collapsed] (#9214)
    98125 - sortable (#8949)