A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 rivejä
340 B

  1. name: basic
  2. label: sanity check for basic text parsing, no gimmicks
  3. input: "foobar"
  4. output: [Text(text="foobar")]
  5. ---
  6. name: basic2
  7. label: slightly more complex text parsing, with newlines
  8. input: "This is a line of text.\nThis is another line of text."
  9. output: [Text(text="This is a line of text.\nThis is another line of text.")]