-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(renderer): Fixed a bug causing the last line to have border place…
…d on the wrong column Added some validation to check for these types of lines(also checks the trailing characters).
- Loading branch information
Showing
3 changed files
with
94 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Makrview.nvim | ||
|
||
An experimental markdown previewer for Neovim. | ||
|
||
```lua | ||
vim.print(require("markview").state); | ||
``` | ||
|
||
## Tasks | ||
|
||
- [X] Stability improvements | ||
- [ ] Rocks.nvim workflow | ||
- [-] Wiki updates | ||
|
||
## Links | ||
|
||
[Markview.nvim](https://www.github.com/markview.nvim) | ||
![Showcase](../img/showcase.jpg) | ||
<[email protected]> | ||
|
||
## Notifications | ||
|
||
>[!Important] | ||
> Old presets are about to be removed. | ||
>[!Tip] | ||
> Don't forget to check the wiki! | ||
>[!Warning] | ||
> Only for Neovim `0.10.0` and higher. | ||
## Github Insights | ||
|
||
| Entry name | Entry value | | ||
|:------------------------|:-----------------------| | ||
| Git clones | 1008 | | ||
| Visitors | 3801 | | ||
| Stars | 777 | | ||
| Lines added | 8426 | | ||
| Lines deleted | 3158 | | ||
|
||
|
||
<!-- | ||
vim:nospell | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Markview.nvim | ||
|
||
An experimental markdown previewer for Neovim. | ||
|
||
Hybrid mode: | ||
A way to preview & edit at the same time | ||
--- | ||
|
||
It is now possible to see previews as you type. | ||
|
||
It works for all kinds of elements such as `inline codes`, | ||
*italic*, **bold** etc. | ||
|
||
It also works for block elements. | ||
|
||
```lua | ||
vim.print("Hello world"); | ||
``` | ||
|
||
>[!Tip] | ||
> It can also work on nested elements. | ||
> | ||
> ```vim | ||
> set scrolloff=0 | ||
> ``` | ||
It even works on list items, | ||
- Item 1 | ||
- Item 2 | ||
- Nested 1 | ||
- Nested 2 | ||
--- | ||
<!--- | ||
vim:nospell:tw=78:siso=0:cmdheight=0: | ||
--> |