Skip to content

Commit 568b2ad

Browse files
committed
Add missing rockspec for v1.5.0
1 parent b05d4ad commit 568b2ad

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
rockspec_format = "3.0"
2+
package = "markdown-plus.nvim"
3+
version = "1.5.0-1"
4+
5+
source = {
6+
url = "git://github.com/YousefHadder/markdown-plus.nvim.git",
7+
tag = "v1.5.0",
8+
}
9+
10+
description = {
11+
summary = "Modern Markdown editing for Neovim",
12+
detailed = [[
13+
A comprehensive Neovim plugin that provides modern markdown editing
14+
capabilities, implementing features found in popular editors like Typora,
15+
Mark Text, and Obsidian.
16+
17+
Features:
18+
- Smart list management with auto-continuation and renumbering
19+
- Text formatting (bold, italic, strikethrough, inline code)
20+
- Header navigation and promotion/demotion
21+
- Table of contents generation with GitHub-compatible slugs
22+
- Link management and reference-style conversion
23+
- Full <Plug> mapping support for customization
24+
- vim.g configuration support for Vimscript compatibility
25+
- Works with any filetype, not just markdown
26+
]],
27+
homepage = "https://github.com/yousefhadder/markdown-plus.nvim",
28+
license = "MIT",
29+
labels = {
30+
"neovim",
31+
"markdown",
32+
"editor",
33+
"productivity",
34+
},
35+
}
36+
37+
dependencies = {
38+
"lua >= 5.1",
39+
}
40+
41+
build = {
42+
type = "builtin",
43+
copy_directories = {
44+
"doc",
45+
"plugin",
46+
},
47+
}
48+
49+
test_dependencies = {
50+
"nlua",
51+
}
52+
53+
test = {
54+
type = "busted",
55+
}

0 commit comments

Comments
 (0)