Skip to content
Snippets Groups Projects
Select Git revision
  • 05139d1ae0f058a04837867a324201663587a13c
  • main default
2 results

mkdocs.yml

Blame
  • mkdocs.yml 1.62 KiB
    site_name: ES6 Formation
    nav:
      - TP:
          - "Setup": chapters/tp/setup.md
          - "npm": chapters/tp/npm.md
          - "spa": chapters/tp/spa.md
          - "webpack": chapters/tp/webpack.md
          - "webpack js": chapters/tp/webpack-js.md
          - "webpack css": chapters/tp/webpack-cs.md
          - "webpack html": chapters/tp/webpack-html.md
          - "es6-classes.md": chapters/tp/es6-classes.md
          - "Let and const": chapters/tp/Let-and-const.md
          - "arrow functions": chapters/tp/arrow-functions.md
          - "functionnal programming": chapters/tp/functionnal-programming.md
          - "promises": chapters/tp/promises.md
    
          - "sourcemaps": chapters/tp/sourcemaps.md
          - "components": chapters/tp/components.md
          - "babel": chapters/tp/babel.md
          - "arrow functions": chapters/tp/arrow-functions.md
          - "arrow functions": chapters/tp/style.md
          - "functionnal programming": chapters/tp/functionnal-programming.md
          - "ending": chapters/tp/ending.md
      - Practice:
          - "practise": chapters/practice/practise.md
          - "bonuses": chapters/tp2/bonuses.md
      - Cheatsheet:
          - "Cheatsheet": cheatsheets/CHEATSHEET.md
    
    theme:
      name: "material"
      logo: assets/logo.png
      palette:
        primary: pink
      features:
        - navigation.tabs
        - navigation.instant
      theme:
        icon:
          file: fontawesome/solid/file
    
    markdown_extensions:
      - markdown.extensions.admonition
      - pymdownx.highlight:
          anchor_linenums: true
      - pymdownx.inlinehilite
      - pymdownx.snippets
      - pymdownx.superfences
      - pymdownx.details
      - pymdownx.mark
      - pymdownx.tabbed:
          alternate_style: true
      - attr_list
      - tables
    
    extra_dirs:
      - downloads