Commit b4f197e 1 parent eafacd0 commit b4f197e Copy full SHA for b4f197e
File tree 4 files changed +101
-0
lines changed
4 files changed +101
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ - main
7
+ permissions :
8
+ contents : write
9
+ jobs :
10
+ deploy :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+ - uses : actions/setup-python@v4
15
+ with :
16
+ python-version : 3.x
17
+ - uses : actions/cache@v2
18
+ with :
19
+ key : ${{ github.ref }}
20
+ path : .cache
21
+ - run : pip install mkdocs-material
22
+ - run : pip install pillow cairosvg
23
+ - run : mkdocs gh-deploy --force
Original file line number Diff line number Diff line change
1
+ # Welcome to MkDocs
2
+
3
+ For full documentation visit [ mkdocs.org] ( https://www.mkdocs.org ) .
4
+
5
+ ## Commands
6
+
7
+ * ` mkdocs new [dir-name] ` - Create a new project.
8
+ * ` mkdocs serve ` - Start the live-reloading docs server.
9
+ * ` mkdocs build ` - Build the documentation site.
10
+ * ` mkdocs -h ` - Print help message and exit.
11
+
12
+ ## Project layout
13
+
14
+ mkdocs.yml # The configuration file.
15
+ docs/
16
+ index.md # The documentation homepage.
17
+ ... # Other markdown pages, images and other files.
Original file line number Diff line number Diff line change
1
+ # Page 3
2
+
3
+ ## another heading
Original file line number Diff line number Diff line change
1
+ site_name : Polaris Design System
2
+ theme :
3
+ name : material
4
+ features :
5
+ - navigation.tabs
6
+ - navigation.sections
7
+ - toc.integrate
8
+ - navigation.top
9
+ - search.suggest
10
+ - search.highlight
11
+ - content.tabs.link
12
+ - content.code.annotation
13
+ - content.code.copy
14
+ language : en
15
+ palette :
16
+ - scheme : default
17
+ toggle :
18
+ icon : material/toggle-switch-off-outline
19
+ name : Switch to dark mode
20
+ primary : teal
21
+ accent : purple
22
+ - scheme : slate
23
+ toggle :
24
+ icon : material/toggle-switch
25
+ name : Switch to light mode
26
+ primary : teal
27
+ accent : lime
28
+
29
+
30
+ extra :
31
+ social :
32
+ - icon : fontawesome/brands/github
33
+ link : https://github.com/james-willett
34
+ - icon : fontawesome/brands/twitter
35
+ link : https://twitter.com/TheJamesWillett
36
+ - icon : fontawesome/brands/linkedin
37
+ link : https://www.linkedin.com/in/willettjames/
38
+
39
+
40
+ markdown_extensions :
41
+ - pymdownx.highlight :
42
+ anchor_linenums : true
43
+ - pymdownx.inlinehilite
44
+ - pymdownx.snippets
45
+ - admonition
46
+ - pymdownx.arithmatex :
47
+ generic : true
48
+ - footnotes
49
+ - pymdownx.details
50
+ - pymdownx.superfences
51
+ - pymdownx.mark
52
+ - attr_list
53
+ - pymdownx.emoji :
54
+ emoji_index : !!python/name:materialx.emoji.twemoji
55
+ emoji_generator : !!python/name:materialx.emoji.to_svg
56
+
57
+ copyright : |
58
+ © 2023 <a href="https://github.com/allefsousa" target="_blank" rel="noopener">Digital Horizons Co</a>
You can’t perform that action at this time.
0 commit comments