jordandelozier / wysibb

WYSIWYG BBcode editor
http://www.wysibb.com
246 stars 86 forks source link

UnorderedList missing close tag #13

Closed charafweb closed 12 years ago

charafweb commented 12 years ago

I think that there is a missing closing tag in this code:

bullist : { title: CURLANG.bullist, buttonHTML: '', excmd: 'insertUnorderedList', transform : { '

':"[list]{SELTEXT}[/list]", '
  • {SELTEXT}
  • ':"[*]{SELTEXT}" } },

    I think that this code should be replaced with

    bullist : { title: CURLANG.bullist, buttonHTML: '', excmd: 'insertUnorderedList', transform : { '

    ':"[list]{SELTEXT}[/list]", '
  • {SELTEXT}
  • ':"[]{SELTEXT}[/]" } },

    This missing close tag made a strange bug when document direction is RTL .

    FiXIDeA commented 11 years ago

    Now some parsers can't correct process tag list

    Ex: Source BBCode [list=1][]1[/][]2[/][]3[/][]4[/][]5[/][/list]

    Parsed html

    1. 1

    [/]

  • 2
  • [/]
  • 3
  • [/]
  • 4
  • [/
    ]
  • 5
  • [/*]

    http://www.bbcode.org/examples/?id=13