Skip to content

Commit ea465a6

Browse files
Split demo into separate files. Update tests / demos accordingly.
1 parent 8e9f001 commit ea465a6

18 files changed

+485
-251
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
large.md
22
test.md
3+
*.cast

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
Plugin to improve viewing Markdown files in Neovim
44

5-
![Demo](demo/demo.gif)
5+
| | |
6+
| ------------------------------------------ | ---------------------------------- |
7+
| ![Heading Code](demo/heading_code.gif) | ![List Table](demo/list_table.gif) |
8+
| ![Box Dash Quote](demo/box_dash_quote.gif) | ![LaTeX](demo/latex.gif) |
9+
| ![Callout](demo/callout.gif) | |
610

711
# Features
812

demo/box_dash_quote.gif

69.4 KB
Loading

demo/box_dash_quote.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Checkbox / Dash / Quote
2+
3+
- [ ] Unchecked Checkbox
4+
- [x] Checked Checkbox
5+
6+
---
7+
8+
> Quote line 1
9+
> Quote line 2

demo/callout.gif

102 KB
Loading

demo/callout.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Note
2+
3+
> [!NOTE]
4+
> A regular note
5+
6+
# Tip
7+
8+
> [!TIP]
9+
> Standard tip
10+
11+
# Important
12+
13+
> [!IMPORTANT]
14+
> Exceptional info
15+
16+
# Warning
17+
18+
> [!WARNING]
19+
> Dastardly surprise
20+
21+
# Caution
22+
23+
> [!CAUTION]
24+
> Cautionary tale

demo/demo.gif

-713 KB
Binary file not shown.

demo/heading_code.gif

239 KB
Loading

demo/heading_code.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Heading 1
2+
3+
### Heading 3
4+
5+
#### Heading 4
6+
7+
##### Heading 5
8+
9+
###### Heading 6
10+
11+
```python
12+
def main() -> None:
13+
sum = 0
14+
for i in range(10):
15+
sum += i
16+
print(sum)
17+
18+
19+
if __name__ == "__main__":
20+
main()
21+
```

demo/latex.gif

88.2 KB
Loading

0 commit comments

Comments
 (0)