Skip to content

Instantly share code, notes, and snippets.

@koduki
Created November 3, 2010 09:08
Show Gist options
  • Save koduki/660897 to your computer and use it in GitHub Desktop.
Save koduki/660897 to your computer and use it in GitHub Desktop.
wikiエンジン用のBNF
# BNF
文章 := 文 | ブロック | 文章
文 := 行 | 文
行 := {テキスト|インライン}"\n"
テキスト := %s|%S
インライン := リンク | 強調 | テキスト
ブロック := 見出し | リスト | テーブル
リンク := "[["インライン"]]"
強調 := "\""インライン"\""
見出し := 見出し1|見出し2|見出し3|見出し4|見出し5|見出し6
見出し1 := ""インライン"\n"
見出し2 := "\t"インライン"\n"
見出し3 := "\t\t"インライン"\n"
見出し4 := "\t\t\t"インライン"\n"
見出し5 := "\t\t\t\t"インライン"\n"
見出し6 := "\t\t\t\t\t"インライン"\n"
リスト := "-"インライン"\n"|リスト
テーブル:= {"|"インライン"|"}+ "\n"|テーブル
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment