Skip to content

Commit

Permalink
Prepare for hudder wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
NGSpace committed Aug 16, 2024
1 parent 9ad1826 commit 423910f
Show file tree
Hide file tree
Showing 11 changed files with 556 additions and 17 deletions.
Binary file added Images/Collapsed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/Expanded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/Hudder.webp
Binary file not shown.
24 changes: 7 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="stylesheet" href="Styles/projects.css">
<link rel="stylesheet" href="Styles/GamesList.css">
<script>
const Def = "Games";
const Def = "Projects";
function openTab(evt, TabName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
Expand Down Expand Up @@ -57,24 +57,21 @@
<div style="text-align:left" class="Text">
<p>
NNUEdit is a code editor I made with the goal of one day reviving this
</br>website/project and help me rebuild it from scratch as well as add
some</br> games and any future games/projects to this list.
website/project and help me rebuild it from scratch as well as add
some games and any future games/projects to this list.
</p>
</div>
<image src="Images/ThisScreenShot.png">
<div style="text-align:left" class="Text">
<p>
It is completely open source and available and deeply tested in both</br>
windows as well as linux. It should work on MacOS too but it was never</br>
It is completely open source and available and deeply tested in both
windows and linux. It should work on MacOS too but it was never
tested there.


</br></br>It is very well optimized to minimize
cpu, gpu and memory usage, even
</br>
when working with (extremely) large files (on my pc it was
able to read</br>
files up to 2GB big without lagging a bit!)
cpu, gpu and memory usage, even when working with (extremely)
large files (on my pc it was able to read files up to 2GB big without lagging a bit!)


</br></br>It supports more than 40 programming langauges!
Expand Down Expand Up @@ -110,13 +107,6 @@
<image src="Images/Numbers.png">
<figcaption>Numbers! (HTML)</figcaption>
</a></div>
<!--div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div-->
</div>
</div>
<div id="AboutMe" class="tabcontent">
Expand Down
182 changes: 182 additions & 0 deletions wiki/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
<!doctype html>
<head>

<meta charset="UTF-8" />
<title>Hudder wiki</title>
<script>
document.addEventListener("DOMContentLoaded", function (event) {
document.body.style = "background-color: #202020";
});
</script>
<base href="/"/>
</head>
<body>
<style>
#topbar {
background-color: #101010;
position: fixed;
width: 100%;
height: 8vh;
left: 0;
top: 0;
}
#topbar img {
position: absolute;
padding-top: 1.2vh;
padding-left: 1.2vh;
height: 80%;
}
#topbar #title {
color: lightgray;
text-align: center;
padding-top: 0.8vh;
font-size: 6.7vh;
font-family: consolas;
}
#contents {
position: absolute;
text-align: left;
color: lightgray;
font-family: "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
font-size: 20px;
width: calc(79% - 3px);
left: 20%;
padding-top: 15vh;
padding-left: 1%;
text-wrap: wrap;
border-left: 3px solid gray;
min-height: 85vh;
z-index: -1;
top: 0px;
}
#sidebar {
text-align: left;
color: white;
font-family: "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
font-size: 10px;
width: 20%;
margin: 0px;
padding-top: 10px;
text-wrap: wrap;
border: none;
position: fixed;
top: 12vh;
left: 0%;
}
#sidebar h1 {
margin: 0px;
padding-left: 20px;
margin-bottom: 10px;
border-bottom: 3px solid aqua;
}
#sidebar details {
font-size: 20px;
}
#sidebar details summary a {
margin-left: -5px;
}
#sidebar details summary {
list-style-image: url("/Images/Collapsed.png");
}
#sidebar details[open] summary {
list-style-image: url("/Images/Expanded.png");
}
#sidebar details summary[hidebutton] {
list-style: none;
margin-left: 23px;
}
#sidebar details ul {
list-style: none;
margin-top: 0px;
margin-bottom: 10px;
margin-left: -5px;
}
p {margin: 10px;}
h1 {margin: 0px;margin-top: 10px;margin-bottom: 10px;}
h2 {margin: 0px;margin-top: 10px;margin-bottom: 10px;}
a {
color: #0969da;
text-decoration: none;
}
code {
display: block;
font-family: monospace;
border-radius: 5px;
border-color: gray;
border-style: solid;
border-width: 1px;
background-color: rgb(59, 59, 59);
text-align: left;
padding: 5px;
white-space: pre;
width: fit-content;
}
inline-code {
font-family: monospace;
border-radius: 5px;
border-color: gray;
border-style: solid;
border-width: 1px;
background-color: rgb(59, 59, 59);
text-align: left;
padding: 0px;
margin: 0px;
}
note {
display: inline-block;
border: 0.25em solid;
border-color: #0969da;
padding: 5px;
border-collapse: collapse;
}
</style>
<div id="topbar">
<img src="/Images/Hudder.webp" alt="Back to main wiki page" />
<div id="title">Hudder Wiki</div>
</div>
<div id="sidebar">
<h1>Explore</h1>
<details>
<summary hidebutton>
<a href="/wiki/base.html">Base.html</a>
</summary>
</details>
<details>
<summary><a href="/wiki/home.html">Tutorial</a></summary>
<ul>
<li><a href="/wiki/home.html#text">Normal text</a></li>
<li><a href="/wiki/home.html#color">Character escaping and Color Codes</a></li>
<li><a href="/wiki/home.html#sections">Text sections</a></li>
<li><a href="/wiki/home.html#variables">Basic variables</a></li>
<li><a href="/wiki/home.html#conditions">Basic conditions</a></li>
<li><a href="/wiki/home.html#adv_variables">Advanced Variables</a></li>
<li><a href="/wiki/home.html#methods">Inventory management and methods</a></li>
</ul>
</details>
</div>
<div id="contents">
<h1 id="welcome">You shouldn't be seeing this page!!!</h1>
<h1 id="welcome">Welcome to the hudder wiki!</h1>

Hudder is a minecraft mod which allows you to create your own, highly
customizable hud without prior programming knowledge.<br />
Hudder also allows more technical people the ability to use complex
tools that they may be more familiar with (like JavaScript) to make
their hud.<br />
Hudder also has a variety of built-in huds that can serve as a base for
your own hud as well as give you the ability to make as many huds as you
may wish for.
<br /><br />

Want to start simple? <a href="/home.html">Full tutorial here.</a><br />
Want to do something with JavaScript?
<a href="/home.html">This might be the place to start.</a><br />
A full variable list can be found <a href="/varlist.html">here.</a
><br />
A full list of methods can be found <a href="/varlist.html">here.</a
><br />

<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<a id="ru" href="russian.html">Русский</a>
</div>
</body>
Loading

0 comments on commit 423910f

Please sign in to comment.