A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

12 lignes
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.")]