From fc2f14ffd167cba8b722688a51cd4f1e7997a1fb Mon Sep 17 00:00:00 2001 From: ThatXliner <66848002+ThatXliner@users.noreply.github.com> Date: Fri, 16 Oct 2020 13:12:15 -0700 Subject: [PATCH 1/2] FIxed broken link Added the underscore. --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 25b4a71..22f85de 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -65,7 +65,7 @@ Syntax Highlighting - `Visual Studio Code`_ (Or install through the vscode plugin system) - `Intellij & PyCharm`_ - `Vim`_ -- `Atom` +- `Atom`_ .. _Sublime Text & TextMate: https://github.com/lark-parser/lark_syntax .. _Visual Studio Code: https://github.com/lark-parser/vscode-lark From 843fb1ee4de8d5cecbe18e74857c648b4f320ad9 Mon Sep 17 00:00:00 2001 From: ThatXliner <66848002+ThatXliner@users.noreply.github.com> Date: Fri, 16 Oct 2020 13:15:49 -0700 Subject: [PATCH 2/2] Fixed broken link to common.lark --- docs/json_tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json_tutorial.md b/docs/json_tutorial.md index 2c46606..015b82c 100644 --- a/docs/json_tutorial.md +++ b/docs/json_tutorial.md @@ -78,7 +78,7 @@ By the way, if you're curious what these terminals signify, they are roughly equ Lark will accept this, if you really want to complicate your life :) -You can find the original definitions in [common.lark](/lark/grammars/common.lark). +You can find the original definitions in [common.lark](https://github.com/lark-parser/lark/blob/master/lark/grammars/common.lark). They're don't strictly adhere to [json.org](https://json.org/) - but our purpose here is to accept json, not validate it. Notice that terminals are written in UPPER-CASE, while rules are written in lower-case.