Skip to content

Commit 46770f0

Browse files
committedFeb 26, 2023
Rename home.md to index.md
1 parent 67b2bd1 commit 46770f0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# motoko-lib
22
Motoko general purpose libraries
33

4-
See documentation here: https://research-ag.github.io/motoko-lib/home/
4+
See documentation here: https://research-ag.github.io/motoko-lib/
55

66
## Use this library
77

‎docs/Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
modules := $(shell ls ../src/*.mo)
44

55
targets := $(modules:../src/%.mo=modoc/%.md)
6-
temps := $(modules:../src/%.mo=%.md)
6+
temps := $(modules:../src/%.mo=modoc-tmp/%.md)
77

88
all: $(targets)
99

10-
$(targets): modoc/%.md: %.md
10+
$(targets): modoc/%.md: modoc-tmp/%.md
1111
sed -e 's/no-repl//' <$^ >$@
1212

13-
$(temps): %.md: ../src/%.mo
14-
cd ..; mo-doc --format plain
13+
$(temps): modoc-tmp/%.md: ../src/%.mo
14+
mo-doc --source ../src --output modoc-tmp --format plain
1515

1616
clean:
17-
rm Sha256.md Sha512.md Vector.md index.md
17+
rm -r modoc-tmp

‎docs/home.md ‎docs/index.md

File renamed without changes.

‎mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repo_url: https://github.com/research-ag/motoko-lib
44
site_url: https://research-ag.github.io/motoko-lib/
55
copyright: Copyright &copy; 2023 MR Research AG
66
nav:
7-
- Home: home.md
7+
- Home: index.md
88
- Modules:
99
- Sha256/512: modules/sha2.md
1010
- Vector: modules/vector.md

0 commit comments

Comments
 (0)
Please sign in to comment.