Skip to content

Commit

Permalink
Deploying to gh-pages from @ 0c28347 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
WyvernIXTL committed Oct 15, 2024
1 parent 92c3464 commit 6ec6bff
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <h4>Build</h4>


<script>
availableEnumValues.set("os", []);
availableEnumValues.set("__os__", []);
</script>

<hgroup>
Expand All @@ -113,46 +113,46 @@ <h4>Operating System</h4>
<fieldset>


<input type="radio" name="os" id=linux onchange="render()" />
<input type="radio" name="__os__" id=linux onchange="render()" />

<label for="linux">

Linux
</label>

<script>
availableEnumValues.set("os", [...availableEnumValues.get("os"), "linux"]);
availableEnumValues.set("__os__", [...availableEnumValues.get("__os__"), "linux"]);
</script>


<input type="radio" name="os" id=mac onchange="render()" />
<input type="radio" name="__os__" id=macos onchange="render()" />

<label for="mac">
<label for="macos">

Mac
</label>

<script>
availableEnumValues.set("os", [...availableEnumValues.get("os"), "mac"]);
availableEnumValues.set("__os__", [...availableEnumValues.get("__os__"), "macos"]);
</script>


<input type="radio" name="os" id=win onchange="render()" checked />
<input type="radio" name="__os__" id=windows onchange="render()" />

<label for="win">
<label for="windows">

Windows
</label>

<script>
availableEnumValues.set("os", [...availableEnumValues.get("os"), "win"]);
availableEnumValues.set("__os__", [...availableEnumValues.get("__os__"), "windows"]);
</script>

</fieldset>

<script>
input.set("os", "win")
radio.add("os")
input.set("__os__", "None")
radio.add("__os__")
</script>


Expand Down Expand Up @@ -334,7 +334,10 @@ <h4>Instructions</h4>
];


const template = nunjucks.compile(macros.join("\n") + `{# Adams spaghetti code #}
const template = nunjucks.compile(macros.join("\n") + `{# command is macro which simply removes line breaks. #}
{% call command() %}
{# Adams spaghetti code #}
{% if package == "conda" %}
conda install
Expand Down Expand Up @@ -397,7 +400,8 @@ <h4>Instructions</h4>
{% endif %}
{% endif %}
{% endif %}
{% endif %}`);
{% endif %}
{% endcall %}`);


const defaultProperties = {
Expand Down

0 comments on commit 6ec6bff

Please sign in to comment.