Skip to content

Commit

Permalink
Circle #272
Browse files Browse the repository at this point in the history
  • Loading branch information
yogthos committed Jan 29, 2024
1 parent 0723c9f commit e3dd6c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/docs/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ <h2 id="kit&#95;modules">Kit Modules</h2><p>Kit modules are templates that can b
:kit/nrepl - adds support for nREPL
:kit/htmx - adds support for HTMX using hiccup
:kit/hato - adds support for kit-Hato HTTP client
:kit/codox - adds support for Codox
:done
user=&gt;
</code></pre><p>We can see that the three modules specified in the official modules repository are now available for use. Let's install the HTML module by running <code>kit/install-module</code> function and passing it the keyword specifying the module name:</p><pre><code class="clojure">user=&gt; &#40;kit/install-module :kit/html&#41;
Expand Down Expand Up @@ -113,7 +114,10 @@ <h2 id="kit&#95;modules">Kit Modules</h2><p>Kit modules are templates that can b
:doc &quot;adds support for nREPL&quot;}
:kit/hato
{:path &quot;hato&quot;
:doc &quot;adds support for kit-Hato HTTP client&quot;}}}
:doc &quot;adds support for kit-Hato HTTP client&quot;}
:kit/codox
{:path &quot;codox&quot;
:doc &quot;adds support for codox&quot;}}}
</code></pre><p>As you can see above, the official repository contains five modules. Let's take a look at the <a href='https://github.com/kit-clj/modules/tree/master/html'><code>:kit/html</code></a> module to see how it works. This module contains a <code>config.edn</code> file and a folder called <code>assets</code>. It has the following configuration:</p><pre><code class="clojure">{:default
{:require-restart? true
:actions
Expand Down

0 comments on commit e3dd6c6

Please sign in to comment.