-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make structure changes and add md-to-html converter script
I added a few scripts for randomizing a message, changed the structure of the project and added a markdown to html converter that allows you to easily convert markdown pages to html pages.
- Loading branch information
magicianessuwu
committed
Apr 27, 2024
1 parent
a56a953
commit c100462
Showing
8 changed files
with
446 additions
and
252 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
# A website for Cubyz | ||
|
||
## 🎨 Markdown to HTML Converter 🎨 | ||
|
||
The file found in ```scripts/markdown_to_html_turner.js``` will transform any markdown file into a html version. | ||
You can use this by putting this in your html file including your markdown url. You also need the script mentioned above. | ||
```html | ||
<main id="turn_this_markdown_to_html_pretty_please"> | ||
https://raw.githubusercontent.com/PixelGuys/Cubyz/master/README.md | ||
</main> | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Preset</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<nav> | ||
<div class="banner"> | ||
<img src="assets/images/green_purple_crystals.png" alt=""> | ||
<div> | ||
<img class="logo" src="assets/textures/pixelguys.png" alt=""> | ||
<a href="">Home</a> | ||
<a href="">Features</a> | ||
<a href="">Information</a> | ||
</div> | ||
<p id="modt-text"> | ||
"Why is nothing here?" - you (probably) | ||
</p> | ||
</div> | ||
</nav> | ||
<main> | ||
<p>Page content here...</p> | ||
</main> | ||
<footer> | ||
<div> | ||
<a href="?">Legal</a> | ||
<a href="?">Guidelines</a> | ||
<a href="https://github.com/pixelguys/Cubyz">Github</a> | ||
<a href="https://www.youtube.com/@quantumdeveloper2733">Youtube</a> | ||
<a href="https://discord.gg/XtqCRRG">Discord</a> | ||
</div> | ||
</footer> | ||
<script src="markdown_to_html_turner.js"></script> | ||
</body> | ||
</html> |
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
Oops, something went wrong.