From 88b4c6458661058a53927eac6b444ab3b4ab3ba4 Mon Sep 17 00:00:00 2001 From: Erez Sh Date: Wed, 10 Jun 2020 14:42:39 +0300 Subject: [PATCH] Added links to Lark IDE --- README.md | 1 + docs/index.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 1c7062c..464f409 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Most importantly, Lark will save you time and prevent you from getting parsing h - [Documentation @readthedocs](https://lark-parser.readthedocs.io/) - [Cheatsheet (PDF)](/docs/lark_cheatsheet.pdf) +- [Online IDE (very basic)](https://lark-parser.github.io/lark/ide/app.html) - [Tutorial](/docs/json_tutorial.md) for writing a JSON parser. - Blog post: [How to write a DSL with Lark](http://blog.erezsh.com/how-to-write-a-dsl-in-python-with-lark/) - [Gitter chat](https://gitter.im/lark-parser/Lobby) diff --git a/docs/index.md b/docs/index.md index 3efac24..20257b5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -34,6 +34,7 @@ $ pip install lark-parser * [Philosophy & Design Choices](philosophy.md) * [Full List of Features](features.md) * [Examples](https://github.com/lark-parser/lark/tree/master/examples) +* [Online IDE](https://lark-parser.github.io/lark/ide/app.html) * Tutorials * [How to write a DSL](http://blog.erezsh.com/how-to-write-a-dsl-in-python-with-lark/) - Implements a toy LOGO-like language with an interpreter * [How to write a JSON parser](json_tutorial.md) - Teaches you how to use Lark