File tree 2 files changed +27
-2
lines changed
2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : docs
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - feat/web-docs
7
+ paths :
8
+ - docs/**
9
+
10
+ jobs :
11
+ docgen :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ with :
16
+ token : ${{ secrets.GH_TOKEN }}
17
+ - name : Push docs to nvim-orgmode.github.io repo
18
+ uses : nkoppel/push-files-to-another-repository@v1.1.4
19
+ env :
20
+ API_TOKEN_GITHUB : ${{ secrets.GH_TOKEN }}
21
+ with :
22
+ source-files : ' docs/'
23
+ destination-username : ' nvim-orgmode'
24
+ destination-repository : ' nvim-orgmode.github.io'
25
+ destination-branch : ' feat/vitepress'
26
+ commit-email : ' github-actions@github.com'
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ It aims to be a feature-complete implementation of Orgmode features in Neovim.
5
5
6
6
💡 TIP: To view this documentation offline in Neovim, run =:Org help=. More info in [[#globals-and-commands][Globals and commands]] section.
7
7
8
-
9
8
** Quick start
10
9
:PROPERTIES:
11
10
:CUSTOM_ID: quick-start
@@ -46,7 +45,7 @@ that demonstrates how the similar Orgmode clone [[https://github.com/dhruvasagar
46
45
:PROPERTIES:
47
46
:CUSTOM_ID: api-docs
48
47
:END:
49
- Nvim-orgmode exoses a Lua API that can be used to interact with the orgmode. To view it, check [[file:../docs/orgmode-api.txt][orgmode-api.txt]]
48
+ Nvim-orgmode exposes a Lua API that can be used to interact with the orgmode. To view it, check [[file:../docs/orgmode-api.txt][orgmode-api.txt]]
50
49
or do =:h OrgApi= in Neovim.
51
50
52
51
** Globals and commands
You can’t perform that action at this time.
0 commit comments