-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change HTML template * split generation in module.html and index.html * generate list content * generate singlepage Html * cards open by default * delete .pol from title and list * list body * fmt changes * generate modules externaly * solve problem with pol clean * solve problem with empty contructor * change presentation * change doc color * add show content button * enclose body in code element * minor css changes * ad href * change to multifile * cargo fmt * minor design changes * change uppercase types to lowercase
- Loading branch information
1 parent
9ab5133
commit ddc83a1
Showing
13 changed files
with
341 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<span>{{doc}}</span> | ||
<span><span class="keyword">Codata</span> {{name}}{{attr}} {{typ}} {</span> <br> | ||
<span>{{body}}</span> <br> | ||
<span>}</span> <br> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<span><span class="keyword">codata</span> {{name}}{{attr}} {{typ}}</span> | ||
</div> | ||
<div class="card-content" style="display: block;"> | ||
<span>{{doc}}</span> | ||
<code> | ||
<span>{{body}}</span> | ||
</code> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
<span>{{doc}}</span> | ||
<span><span class="keyword">Codef</span> {{name}}{{params}}: {{typ}} {</span> <br> | ||
<span>{{body}}</span> <br> | ||
<span>}</span> <br> | ||
<div class="card"> | ||
<div class="card-header" onclick="toggleCard(this)"> | ||
<span><span class="keyword">codef</span> {{name}}{{params}}: {{typ}}</span> | ||
<button class="button">show code</button> | ||
</div> | ||
<div class="doc" style="display: block;"> | ||
<span>{{doc}}</span> | ||
</div> | ||
<div class="card-content" style="display: none;"> | ||
<code> | ||
<span>{{body}}</span> | ||
</code> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<span>{{doc}}</span> | ||
<span><span class="keyword">Data</span> {{name}}{{attr}} {{typ}} {</span> <br> | ||
<span>{{body}}</span> <br> | ||
<span>}</span> <br> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<span> <span class="keyword">data</span> {{name}}{{attr}}{{typ}}</span> | ||
</div> | ||
<div class="card-content" style="display: block;"> | ||
<span>{{doc}}</span> | ||
<code> | ||
<span>{{body}}</span> | ||
</code> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
<span>{{doc}}</span> | ||
<span><span class="keyword">Def</span> {{self_param}}.{{name}}{{params}}: {{typ}} {</span> <br> | ||
<span>{{body}}</span> <br> | ||
<span>}</span> <br> | ||
<div class="card"> | ||
<div class="card-header" onclick="toggleCard(this)"> | ||
<span><span class="keyword">def</span> {{self_param}}.{{name}}{{params}}: {{typ}}</span> | ||
<button class="button">show code</button> | ||
</div> | ||
<div class="doc" style="display: block;"> | ||
<span>{{doc}}</span> | ||
</div> | ||
<div class="card-content" style="display: none;"> | ||
<code> | ||
<span>{{body}}</span> | ||
</code> | ||
</div> | ||
</div> |
Oops, something went wrong.