Avatar
🏃
2 results for Mkdocs
  • J’ai fini par trouvé (j’ai ajouté css/extra.css ):

    img.emoji {
       height: 16px;
       width: 16px;
       margin: 0 .05em 0 .1em;
       vertical-align: -0.1em;
    }
    
    .twemoji {
      width: 16px;
      height: 16px;
      display: inline-block;
      vertical-align: top;
    }

    Et maintenant c’est fixé.

    mkdocs Created Sat, 10 Jun 2023 00:00:00 +0000
  • J’ai donc repris “mon CV” au format Markdown : https://github.com/farias06/resume . Mais cette fois le but est de faire un ReadTheDocs avec mkdocs : https://mkdocs.readthedocs.io/en/0.10/ .

    # apt-get install mkdocs
    # apt-get install pip
    # pip install mkdocs-mermaid2-plugin
    # mkdocs build
    INFO     - Cleaning site directory
    INFO     - Building documentation to directory: /.../site
    INFO     - The following pages exist in the docs directory, but are not included in the "nav" configuration:
                  - Competitions/Velo/README.md
    WARNING  - Documentation file 'README.md' contains a link to 'www.cyber-neurones.org' which is not found in the documentation files.
    WARNING  - Documentation file 'README.md' contains a link to 'descente-canyon.com' which is not found in the documentation files.
    WARNING  - Documentation file 'README.md' contains a link to 'descente-canyon.com' which is not found in the documentation files.
    WARNING  - Documentation file 'README.md' contains a link to 'descente-canyon.com' which is not found in the documentation files.
    WARNING  - Documentation file 'README.md' contains a link to 'descente-canyon.com' which is not found in the documentation files.
    WARNING  - Documentation file 'README.md' contains a link to 'descente-canyon.com' which is not found in the documentation files.
    INFO     - Documentation built in 0.67 seconds
    # rm -rf /var/arias-frederic.org/public/*
    # cp -r site/* /var/arias-frederic.org/public/.
    # chown -R www-data.www-data /var/arias-frederic.org/public/

    J’ai donc remplacé le site fait bien Hugo par le MKdocs.

    github markdown mkdocs Created Sat, 10 Jun 2023 00:00:00 +0000