Skip to content

Commit

Permalink
Merge pull request #4 from chrishrb/3-support-mermaid-diagrams
Browse files Browse the repository at this point in the history
3 Add support for mermaid diagrams
  • Loading branch information
chrishrb authored Nov 2, 2024
2 parents a101814 + efd781f commit 33b5d6f
Show file tree
Hide file tree
Showing 5 changed files with 2,374 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ LDFLAGS="-s -w ${LDFLAGS_OPT}"

all: build format lint ## Format, lint and build

run: ## Run
go run main.go

build: ## Build
go build -o bin/go-grip main.go

Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,20 @@
* 📱 Dark and white mode
* 🎨 Syntax highlighting for code
* [x] Todo list like the one on GitHub
* Support for mermaid diagrams

```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```

> [!TIP]
> Support of blockquotes (note, tip, important, warning and caution) [see here](https://github.com/orgs/community/discussions/16925)

## 🚀 Getting started

To install go-grip, simply:
Expand Down
Loading

0 comments on commit 33b5d6f

Please sign in to comment.