From 63fd7da9c1990d612ccf6eb3a30b25dc31937580 Mon Sep 17 00:00:00 2001 From: Jen-Chieh Shen Date: Mon, 11 Dec 2023 00:42:38 -0800 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 143fa23..fde8974 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ For most of the `major-mode` that needed a parser to act correctly. This is a regular expression base parser. The goal of this project is to generate AST for targeting programming language. -## Supported Langauges +## 🔨 Supported Langauges * ActionScript - `actionscript` * Assembly Language - `asm` @@ -38,7 +38,7 @@ targeting programming language. * TypeScript - `typescript` * XML - `xml` -## Try it yourself! +## 🔰 Try it yourself! You can simply test with any script like the code under. @@ -49,7 +49,7 @@ You can simply test with any script like the code under. All tokens are listed under programming language's file itself. -## How to write one parser/AST for your favorite language? +## 💫 How to write one parser/AST for your favorite language? There are 4 files you need to know before you write your own parser/AST. And these 4 files are listed under below.