forked from zhongwencool/observer_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.exs
More file actions
31 lines (30 loc) · 759 Bytes
/
docs.exs
File metadata and controls
31 lines (30 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[
extras: [
{"README.md", title: "Home"},
"./docs/plugin.md",
"./docs/formatter.md",
"./docs/CHANGELOG.md",
"LICENSE"
],
logo: "./docs/favicon.png",
authors: [
"Zhongwen Deng <zhongwencool@gmail.com>"
],
main: "readme",
source_url: "https://github.com/zhongwencool/observer_cli",
homepage_url: "https://github.com/zhongwencool/observer_cli",
with_mermaid: true,
before_closing_body_tag: fn
:html ->
"""
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad: true})</script>
"""
_ ->
""
end,
api_reference: false,
warnings_as_errors: true,
groups_for_docs: [],
filter_modules: fn _, _ -> false end
]