Skip to content

Commit

Permalink
docs: update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoGonzalez committed Aug 22, 2023
1 parent 9fa3490 commit 2e1a49d
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


<link rel="icon" href="/assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.2, mkdocs-material-9.2.1">
<meta name="generator" content="mkdocs-1.5.2, mkdocs-material-9.2.3">



Expand Down
2 changes: 1 addition & 1 deletion changelog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


<link rel="icon" href="../assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.2, mkdocs-material-9.2.1">
<meta name="generator" content="mkdocs-1.5.2, mkdocs-material-9.2.3">



Expand Down
73 changes: 71 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


<link rel="icon" href="assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.2, mkdocs-material-9.2.1">
<meta name="generator" content="mkdocs-1.5.2, mkdocs-material-9.2.3">



Expand Down Expand Up @@ -347,6 +347,26 @@
</ul>
</nav>

</li>

<li class="md-nav__item">
<a href="#known-issues" class="md-nav__link">
Known Issues
</a>

<nav class="md-nav" aria-label="Known Issues">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#missing-mkdocs-plugins" class="md-nav__link">
Missing MkDocs Plugins
</a>

</li>

</ul>
</nav>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -502,6 +522,26 @@
</ul>
</nav>

</li>

<li class="md-nav__item">
<a href="#known-issues" class="md-nav__link">
Known Issues
</a>

<nav class="md-nav" aria-label="Known Issues">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#missing-mkdocs-plugins" class="md-nav__link">
Missing MkDocs Plugins
</a>

</li>

</ul>
</nav>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -596,11 +636,14 @@ <h2 id="pre-commit-usage">Pre-Commit Usage</h2>
is the name of your MkDocs YAML configuration file:</p>
<pre><code class="language-yaml">repos:
- repo: https://github.com/RodrigoGonzalez/check-mkdocs
rev: v1.1.6
rev: v1.2.0
hooks:
- id: check-mkdocs
name: check-mkdocs
args: [&quot;--config&quot;, &quot;mkdocs.yml&quot;] # Optional, mkdocs.yml is the default
# If you have additional plugins or libraries that are not included in
# check-mkdocs, add them here
additional_dependencies: ['mkdocs-material']
</code></pre>
<h2 id="command-line-usage">Command-Line Usage</h2>
<p>To run this hook, you can use the following command:</p>
Expand Down Expand Up @@ -638,6 +681,32 @@ <h3 id="the-generate-build-argument">The <code>--generate-build</code> Argument<
build the project documentation, and start the server. If
there's an error in any of these steps, the tool will print
an error message and return an error code.</p>
<h2 id="known-issues">Known Issues</h2>
<h3 id="missing-mkdocs-plugins">Missing MkDocs Plugins</h3>
<p>Given the enormous number of plugins available for MkDocs,
it's possible that some plugins are not included in this
tool. In this case you will see an error message similar to
this:</p>
<pre><code class="language-shell">check-mkdocs.............................................................Failed
- hook id: check-mkdocs
- exit code: 1

Config value 'theme': Unrecognised theme name: 'material'. The available installed themes are: mkdocs, readthedocs
Config value 'markdown_extensions': Failed to load extension 'pymdownx.snippets'.
ModuleNotFoundError: No module named 'pymdownx'
Config value 'plugins': The &quot;mkdocstrings&quot; plugin is not installed

make: *** [pre-commit] Error 1
</code></pre>
<p>If you have additional plugins or libraries that are not
included in check-mkdocs, add them here:</p>
<pre><code class="language-yaml">repos:
- repo: https://github.com/RodrigoGonzalez/check-mkdocs
hooks:
- id: check-mkdocs
# If you have additional plugins or libraries that are not included in check-mkdocs, add them here
additional_dependencies: ['mkdocs-material', 'mkdocstrings']
</code></pre>


<div class="doc doc-object doc-module">
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit 2e1a49d

Please sign in to comment.