Page MenuHomePhabricator

Add parentheses html tag to wikicode
Closed, DuplicatePublic

Description

Hello. It will be very helpful, if you could add a new tag, that works as balanced parantheses in wikicode. Then the parser could use it for right evaluation. For example, the code

{{some template
| name = abc
| birth = 2050
| roles =
{{{!}}
{{!}}-
{{!}} width=30% {{!}} a
{{!}} c
{{!}}-
{{!}} e {{!}}{{!}} f
{{!}}}
| next = rty}}

can be replaced by something like

{{some template
| name = abc
| birth = 2050
| roles =<paren>
{|
|-
| width=30% | a
| c
|-
| e || f
|}</paren>
| next = rty}}

which is much more convenient. Thank you.