Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
cd202c2
feat(parsers): Added `doctext` parser
OXY2DEV Dec 31, 2025
9c4a9a4
feat(doctext): Added configuration for `doctext`
OXY2DEV Jan 1, 2026
46587f5
feat(doctext): Added `task` renderer
OXY2DEV Jan 1, 2026
8507306
doc(doctext): Updated types
OXY2DEV Jan 1, 2026
0d815a8
fix(doctext): `@` in mentions are now hidden
OXY2DEV Jan 1, 2026
e363a39
refactor(doctext): Updated parser name
OXY2DEV Jan 1, 2026
06fa1fc
feat(comment): Added `code_block` support
OXY2DEV Jan 2, 2026
6da007d
feat(comment): Added `url`, `taglink` & `autolink`
OXY2DEV Jan 2, 2026
c99341c
fix(filetypes): Proerly handle `nil` values
OXY2DEV Jan 8, 2026
f83c081
feat(comment): Added option for rendering *fancy comments*
OXY2DEV Jan 8, 2026
124b1a3
doc(comment): Added some type defs
OXY2DEV Jan 8, 2026
3d758ac
chore: Removed dead code
OXY2DEV Jan 8, 2026
063a0db
doc: Updated some docs
OXY2DEV Jan 8, 2026
184a43a
doc(comment): Added types
OXY2DEV Jan 9, 2026
628b09a
refactor(utils): Added `case-insensitive` match option
OXY2DEV Jan 9, 2026
ab00aa4
feat(config, comment, tasks): Added more task type configs
OXY2DEV Jan 9, 2026
492f4e7
feat(comment): Added link labels for `autolinks`
OXY2DEV Jan 9, 2026
a675d45
refactor(config, comment, issues): Updated `icon` & `hl`
OXY2DEV Jan 9, 2026
e4bd8cf
refactor(config, comment, mentions): Updated `icon` & `hl`
OXY2DEV Jan 9, 2026
fa27d36
refactor(config, comment, urls): Improved rendering
OXY2DEV Jan 9, 2026
05a6d53
feat(comment): Added compatibilty for legacy parser
OXY2DEV Jan 9, 2026
6c07f8f
feat(comment): Added task scopes support
OXY2DEV Jan 9, 2026
d92f4d3
fix(config, condition): Parity between `can_attach()` & `buf_handle()`
OXY2DEV Jan 10, 2026
883646b
refactor(comment, hybrid_mode): Added option maps for `comment`
OXY2DEV Jan 10, 2026
c420afd
chore: Updated option map key orders
OXY2DEV Jan 10, 2026
87d74af
feat(comment): Added `bold` & `italic` support
OXY2DEV Jan 11, 2026
339ad16
chore: Added test file for `comment`
OXY2DEV Jan 11, 2026
a10d8d6
chore: Cleaned up some codes
OXY2DEV Jan 11, 2026
28f4f34
doc: Added help files
OXY2DEV Jan 11, 2026
0f4e97d
doc: Updated README.md
OXY2DEV Jan 11, 2026
658f9b1
doc: Updated help files
OXY2DEV Jan 11, 2026
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
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<div align="center">
<img src="https://github.com/OXY2DEV/markview.nvim/blob/images/v27/markview.nvim-splitview_2.png">
<img src="https://github.com/OXY2DEV/markview.nvim/blob/images/v27/markview.nvim-hybrid_mode.png">
<img src="https://github.com/OXY2DEV/markview.nvim/blob/images/v27/markview.nvim-comment.png">
</div>

<div align="center">
Expand All @@ -80,6 +81,7 @@ Core features,
+ Highly customisable! You can change almost anything using the config!
+ Dynamic `highlight groups` that automatically updates with the colorscheme!
+ `Callout`, `checkbox` completions for `blink.cmp` & `nvim-cmp`.
+ Works with `tree-sitter injections` too!

<TOC/>

Expand All @@ -104,6 +106,32 @@ Also see,
<summary>Expand to see complete feature list</summary>
<!--markdoc_ignore_end-->

#### Fancy comments,

<img src="https://github.com/OXY2DEV/markview.nvim/wiki/images/comment/markview.nvim-comment.injection.png">

> Comments are still experimental! The original parser only supports basic features.

Conventional commit style comments with support for a subset of `markdown` & `vimdoc`. See [integrations#fancy-comments](https://github.com/OXY2DEV/markview.nvim/wiki/Integrations#-fancy-comments) For more info.

Supported syntax,

+ Tasks(e.g. `feat`, `TODO` etc.)
+ Task scopes.

Extra syntax(needs external parser),

+ `**Bold**`
+ `*Italic*`
+ `Code`
+ `'Quoted_text'`
+ `"Double quoted text"`
+ `@mentions`
+ `issues/reference#52`
+ `https://example.com`
+ `|help-section|`
+ Code blocks

#### HTML,

<img src="https://github.com/OXY2DEV/markview.nvim/blob/images/v25/repo/html-tokyonight_night.png">
Expand Down Expand Up @@ -372,6 +400,7 @@ Parsers,

- `markdown`
- `markdown_inline`
- `comment`(optional)
- `html`(optional)
- `latex`(optional)
- `typst`(optional)
Expand Down
Loading