Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 4 additions & 5 deletions .github/workflows/docgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- uses: actions/setup-go@v5
- name: Install pandoc
uses: pandoc/actions/setup@v1
with:
go-version: '^1.17.1'
- name: Install md2vim
run: go install git.foosoft.net/alex/md2vim@latest
version: 3.5
- name: Install Neovim
uses: rhysd/action-setup-vim@v1
id: neovim
Expand All @@ -30,7 +29,7 @@ jobs:
- name: Generate api docs
run: make api_docs
- name: Generate vim docs
run: make docs
run: make vim_docs
- name: Commit changes
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
52 changes: 0 additions & 52 deletions CONTRIBUTING.md

This file was deleted.

1 change: 1 addition & 0 deletions CONTRIBUTING.org
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Check [[file:./docs/contributing.org][contributing]] for more information
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ clean:
nvim --headless --clean -n -c "lua vim.fn.delete('./tests/.deps', 'rf')" +q
test:
nvim --headless --clean -u tests/test.lua "$(FILE)"
docs:
md2vim -desc "*orgmode* *orgmode.nvim*\n* NOTE: This file is autogenerated from DOCS.md file" DOCS.md doc/orgmode.txt
vim_docs:
./scripts/build_docs.sh
api_docs:
nvim --headless --clean -u ./scripts/gendoc.lua
setup_dev:
Expand Down
Loading
Loading