Guest User

Untitled

a guest
Aug 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Mediawiki tag extension - chained tags do not get processed
  2. function efSampleParserInit( Parser &$parser ) {
  3. $parser->setHook( 'sample', 'efSampleRender' );
  4. return true;
  5. }
  6.  
  7. function efSampleRender( $input, array $args, Parser $parser, PPFrame $frame ) {
  8. return "hello ->" . $input . "<- hello";
  9. }
  10.  
  11. This is the text <sample type="1">hello my <sample type="2">brother</sample> John</sample>
  12.  
  13. <markdown>
  14. **Look,** here's some Markdown text!
  15. </markdown>
Add Comment
Please, Sign In to add comment