A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

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