Skip to content

How to use Minimark

efraim132 edited this page May 21, 2025 · 1 revision

Minimark is the language we use in EENet for websites. Similar to HTML the browser renders these files to make a website!

Here is how to make a minimark file, this will be saved as yourwebsite.txt in the root directory of your computer!

🧱 Headings & Alignment

Use #, ##, or ### to align text:

  • # β†’ Left aligned
  • ## β†’ Center aligned
  • ### β†’ Right aligned
#Heading 1  
##Heading 2  
###Heading 3

🎨 Text Formatting

Use [text:color] and [text:reset] to change text color:

[text:green]Green text  
[text:red]Red[text:reset] Normal

Colors supported are only those that are supported by computercraft


🎨 Background Colors

Use [background:color] and [background:reset]:

[background:blue][text:white] Blue Background [text:reset][background:reset]

You can mix with text color.


πŸ”— Links

Clickable links that load a new page:

[link:"news", "Go to news"]

You can put in your own custom EENET url here (like google, or news, or BlockHeedMartin)

↔ Line Breaks

Blank lines in your file will create vertical spacing:

Line above

Line below

βœ… Example Snippet

#MiniMark Demo Page  
##[text:cyan]See What You Can Do!

[text:green]Text Formatting:
This is [text:red]red[text:reset], [text:yellow]yellow[text:reset], [text:lime]lime[text:reset], [text:blue]blue[text:reset], and [text:magenta]magenta[text:reset] text.

[text:white]Background Colors:
[background:blue][text:white] Blue Background [text:reset][background:reset]  
[background:green][text:black] Green Background [text:reset][background:reset]  
[background:red][text:white] Red Background [text:reset][background:reset]  

[text:green]Headings:
#Heading 1  
##Heading 2  
###Heading 3  

[text:cyan]Links:
[link:"news", "Go to news"]  

[text:lime]Alignment Examples:
#Left Align  
##Center Align  
###Right Align  

[text:magenta]Line Breaks:
(this section has blank lines between it)

Line above

Line below  

[text:yellow]Thanks for Visiting the Demo!
Build something cool.