Once that #505342: Allow third-party modules to modify the list of filters / rules is implemented, it will be possible to create a module for a Wikipedia-like syntax. Having a module to handle this will allow to have high performances because the code used will not be passed to create_function().

Comments

apaderno’s picture

Status: Active » Postponed

I will create a module as a separate project, once that the Custom filter API will be stable.

Ole Martin’s picture

How is the progress?

tomerfiliba’s picture

Version: 6.x-2.x-dev » 7.x-1.x-dev

hi all,
i used CustomFilters to create a simple but very useful wiki-like engine: download available at https://gist.github.com/961708

it's quite simple:

  • **strong** //emphasized// __underlined__ --deleted-- ^^superscript^^ ,,subscript,, ``monospaced``
  • backslash-escaping, i.e., \*\*this is not strong\*\*
  • [[code LANGUAGE]] text [[/code]] (to be used in conjunction with syntaxhighligher)
  • [[url|link text]]
  • @ is for bullet
  • @@ is for sub-bullet
  • # is for numbered item
  • ## is for sub-numbered item

hope you guys find it useful

yukare’s picture

Maybe we could work together to make a media wiki filter? Media wiki is a more know format.