Skip to content

Commit 9801148

Browse files
feat(docs): Add orgmode docs (#864)
feat(docs): Add orgmode docs
1 parent 3ba6db7 commit 9801148

15 files changed

+4143
-313
lines changed

.github/workflows/docgen.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ jobs:
1212
- uses: actions/checkout@v4
1313
with:
1414
token: ${{ secrets.GH_TOKEN }}
15-
- uses: actions/setup-go@v5
15+
- name: Install pandoc
16+
uses: pandoc/actions/setup@v1
1617
with:
17-
go-version: '^1.17.1'
18-
- name: Install md2vim
19-
run: go install git.foosoft.net/alex/md2vim@latest
18+
version: 3.5
2019
- name: Install Neovim
2120
uses: rhysd/action-setup-vim@v1
2221
id: neovim
@@ -30,7 +29,7 @@ jobs:
3029
- name: Generate api docs
3130
run: make api_docs
3231
- name: Generate vim docs
33-
run: make docs
32+
run: make vim_docs
3433
- name: Commit changes
3534
env:
3635
GH_TOKEN: ${{ secrets.GH_TOKEN }}

CONTRIBUTING.md

-52
This file was deleted.

CONTRIBUTING.org

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Check [[file:./docs/contributing.org][contributing]] for more information

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ clean:
22
nvim --headless --clean -n -c "lua vim.fn.delete('./tests/.deps', 'rf')" +q
33
test:
44
nvim --headless --clean -u tests/test.lua "$(FILE)"
5-
docs:
6-
md2vim -desc "*orgmode* *orgmode.nvim*\n* NOTE: This file is autogenerated from DOCS.md file" DOCS.md doc/orgmode.txt
5+
vim_docs:
6+
./scripts/build_docs.sh
77
api_docs:
88
nvim --headless --clean -u ./scripts/gendoc.lua
99
setup_dev:

0 commit comments

Comments
 (0)