Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. ## File structure
  2.  
  3. ```
  4. project/
  5. ├── docs
  6. │   ├── about.md
  7. │   ├── assets
  8. │   │   └── back.png
  9. │   ├── index.md
  10. │   └── installation.md
  11. └── mkdocs.yml
  12. ```
  13.  
  14. ----
  15.  
  16. ### mkdocs.yml
  17.  
  18. ```
  19. site_name: Demo
  20. nav:
  21. - 'index.md'
  22. - Installation: installation.md
  23. - About: about.md
  24. theme:
  25. name: 'material'
  26. ```
  27.  
  28. ----
  29.  
  30. ### index.md
  31.  
  32. ```
  33. # Welcome to our project
  34.  
  35. ![image](assets/back.png)
  36.  
  37. 1. [Installation](/installation/)
  38. 2. [About](/about/)
  39. ```
  40.  
  41. ----
  42.  
  43. ### Run in local
  44.  
  45. ```
  46. docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
  47. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement