Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix image paths in README.md #419

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ import ohm from 'https://unpkg.com/ohm-js@16/dist/ohm.esm.js';

#### Defining Grammars

![Instantiating a grammar](http://harc.github.io//ohm/doc/images/instantiating-grammars.png)
![Instantiating a grammar](doc/images/instantiating-grammars.png)

To use Ohm, you need a grammar that is written in the Ohm language. The grammar provides a formal
definition of the language or data format that you want to parse. There are a few different ways
Expand Down Expand Up @@ -131,7 +131,7 @@ For more information, see [Instantiating Grammars](doc/api-reference.md#instanti

#### Using Grammars

![Matching input](http://harc.github.io/ohm/doc/images/matching.png)
![Matching input](doc/images/matching.png)

<!-- @markscript
// The duplication here is required because Markscript only executes top-level code blocks.
Expand Down Expand Up @@ -159,7 +159,7 @@ For more information, see the [main documentation](doc/README.md).

Ohm has two tools to help you debug grammars: a text trace, and a graphical visualizer.

[![Ohm Visualizer](http://harc.github.io/ohm/doc/images/visualizer-small.png)](https://ohmjs.org/editor)
[![Ohm Visualizer](doc/images/visualizer-small.png)](https://ohmjs.org/editor)

You can [try the visualizer online](https://ohmjs.org/editor).

Expand Down