Skip to content

Commit 5925f48

Browse files
chore: minor update to demos
1 parent 317df87 commit 5925f48

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Plugin to improve viewing Markdown files in Neovim
66

77
| | |
88
| --------- | ------- |
9-
| ![Heading](https://github.com/user-attachments/assets/6d5ca2d3-3263-4ccd-beaf-b5795167d776) | ![Table](https://github.com/user-attachments/assets/b071b31f-fc17-4665-bf75-2e533eae4686) |
10-
| ![Quote](https://github.com/user-attachments/assets/dba88e99-bff5-4b33-9017-ab55c1058d21) | ![LaTeX](https://github.com/user-attachments/assets/85bac8f1-c7df-4078-9e9c-374de9b08e03) |
11-
| ![Callout](https://github.com/user-attachments/assets/bea7e1b9-d77f-4c3f-abf8-f6262b05fad2) | |
9+
| ![Heading](https://github.com/user-attachments/assets/6184ea2d-1769-4c37-bdc4-e6b0d1ca5c00) | ![Table](https://github.com/user-attachments/assets/328473e7-450a-4f52-bc0e-02ccc85e6268) |
10+
| ![Quote](https://github.com/user-attachments/assets/e7da67bc-7a3f-49f0-b8f6-3e61cf59197b) | ![LaTeX](https://github.com/user-attachments/assets/58da917b-5ca5-4705-9cad-978e7bb8574a) |
11+
| ![Callout](https://github.com/user-attachments/assets/73253fa4-ff4f-4562-a721-30c0a218c280) | |
1212

1313
<!-- panvimdoc-ignore-end -->
1414

demo/minit.lua

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
-- Color settings
1+
-- General settings
22
vim.opt.termguicolors = true
33
vim.opt.cursorline = true
44

5-
-- Line number settings
5+
-- Line settings
6+
vim.opt.wrap = false
67
vim.opt.number = true
78
vim.opt.relativenumber = true
89
vim.opt.statuscolumn = '%s%=%{v:relnum?v:relnum:v:lnum} '
@@ -46,7 +47,7 @@ require('lazy').setup({
4647
require('lualine').setup({
4748
sections = {
4849
lualine_a = { 'mode' },
49-
lualine_b = { { 'filename', path = 1 } },
50+
lualine_b = { { 'filename', path = 0 } },
5051
lualine_c = {},
5152
lualine_x = {},
5253
lualine_y = {},

doc/render-markdown.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*render-markdown.txt* For 0.10.0 Last change: 2024 October 13
1+
*render-markdown.txt* For 0.10.0 Last change: 2024 October 15
22

33
==============================================================================
44
Table of Contents *render-markdown-table-of-contents*

justfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ health:
3333
cat-log:
3434
cat ~/.local/state/nvim/render-markdown.log
3535

36-
demo: demo-heading demo-list demo-box demo-latex demo-callout
36+
demo: heading table box latex callout
3737

38-
demo-heading:
38+
heading:
3939
python demo/run.py --name "heading_code"
4040

41-
demo-list:
41+
table:
4242
python demo/run.py --name "list_table"
4343

44-
demo-box:
44+
box:
4545
python demo/run.py --name "box_dash_quote"
4646

47-
demo-latex:
47+
latex:
4848
python demo/run.py --name "latex"
4949

50-
demo-callout:
50+
callout:
5151
python demo/run.py --name "callout"

0 commit comments

Comments
 (0)