Created
November 3, 2010 09:08
-
-
Save koduki/660897 to your computer and use it in GitHub Desktop.
wikiエンジン用のBNF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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