# Same as `InlineDecorator` but with wikilink commands handling
class CmdInlineDecorator
super InlineDecorator
redef type PROCESSOR: CmdMarkdownProcessor
# Model used by wikilink commands to find entities
var model: Model
redef fun add_wikilink(v, token) do
v.render_wikilink(token, model)
end
end
src/doc/templates/html_commands.nit:406,1--418,3