Skip to content
Merged
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
14 changes: 14 additions & 0 deletions docs/3-packages/04-markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,20 @@ Prepend `*` to a link's URI to open the link in a new tab:
<a href="https://stitcher.io" target="_blank" rel="noopener noreferrer">Click me</a>
```

### Raw snippets

Wrap anything in `@@` to prevent it from being rendered at all:

```md
@@
## Hello
@@
```

```html
## Hello
```

## Adding custom features

`tempest/markdown` is meant to be extended. Adding custom parser rules is done in two steps: first you provide a `Rule`, this is a class that determines when your custom parsing logic should be triggered. Next you'll use a `Token` to render your selected Markdown code in any way you'd like.
Expand Down
Loading