A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

12 satır
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.")]