web-bud version 0.2.2

Skip to content

web-bud

Usage

Usage

Quick start

Quick start {#quick-start}

  1. Make sure you have Node installed (I only tested on v18.20+).
  2. Grab and unzip the latest release or do a git clone.
  3. Open your terminal in the web-bud folder and use npm i to install the dependency.
  4. Use npm run watch, then open localhost:8000 to see your website! Edit things and watch the page reload automatically.
  5. When you're happy with your website, use npm run build to get the final build in the dist folder. Careful, if you try npm run watch again it will replace that build!

I tried to document the code fairly extensively, so you should be able to figure out how most things work. Mess around, and let me know if you make something cool out of it!

File structure

File structure {#file-structure}


Your website page structure follows the files and folders in src/content.

Templating features

Templating features {#templating-features}

web-bud uses a few simple tags to allow some templating. Variables are made available at build time in a data object. You can add anything you want to it with src/data.js and src/data.json.


Markdown files in src/content use frontmatter at the top of the file, with a few useful fields:

Markdown features

Markdown features {#markdown-features}

web-bud uses custom Markdown with a small handmade parser. It probably has bugs and does not support the entire Markdown syntax, so please submit an issue if you'd like something fixed or added!

IDs and classes

You can usually add an ID and classes to blocks and elements.

# Chicken
{#title}

My chicken looks like this:
{.centered .red}

![A cute chicken](/chicken.jpg){width=100 height=100}{.rounded}
<h1 id="title">Chicken</h1>

<p class="centered red">
  My chicken looks like this:
</p>

<p>
  <img class="rounded" src="/chicken.jpg" alt="A cute chicken" width="100" height="100" />
</p>

Titles

# Main title
## Secondary title
### Tertiary title
#### Quaternary title
<h1>Main title</h1>
<h2>Secondary title</h2>
<h3>Tertiary title</h3>
<h4>Quaternary title</h4>

Paragraphs

This is a paragraph.
<p>This is a paragraph.</p>

Lists

- Item one
- Item two
<ul>
  <li>Item one</li>
  <li>Item two</li>
</ul>

Ordered lists

1. Item one
2. Item two
1000. Item two
<ul>
  <li>Item one</li>
  <li>Item two</li>
</ul>

Definition lists

Definition title
: definition one
: definition two
<dl>
  <dt>Definition title</dt>
  <dd>definition one</dd>
  <dd>definition two</dd>
</dl>

Blockquotes

You can optionally add a source/author at the end with >-.

> “One could describe Design as a plan for arranging elements to accomplish a particular purpose.”
>- Charles Eames
<blockquote>
  <p>“One could describe Design as a plan for arranging elements to accomplish a particular purpose.”</p>
</blockquote>
<p class="blockquote-author">— Charles Eames</p>

Horizontal rules

--- or ***<hr>

Images

![A dotted frog sitting next to a pond](/assets/images/frog.png){width=100 height=100 loading=lazy}
<img src="/assets/images/frog.png" alt="A dotted frog sitting next to a pond" width="100" height="100" loading="lazy">

Figures

Use a ? at the start of a line to turn it into the figcaption.

??
![A pigeon trying their best to build a nest](/assets/images/pigeon.jpg){width=100 height=100}
? Beautiful pigeon I saw in my neighbourhood.
??
<figure>
  <img src="/assets/images/pigeon.jpg" alt="A pigeon trying their best to build a nest" width="100" height="100">
  <figcaption>Beautiful pigeon I saw in my neighbourhood.</figcaption>
</figure>

Links

Check out [my frogs collection](/frogs)
Check out <a href="/frogs">my frogs collection</a>

Wiki-style links

You can link directly to a page on your site using its name (set in frontmatter).

[[Home]]
<a href="/home">Home</a>

Bold text

Use <b> to draw more attention on the words:

This place is **sacred** in ancient legends.
This place is <b>sacred</b> in ancient legends.

Use <strong> to insist on something serious/important:

Please !!do not enter!! the area.
Please <strong>do not enter</strong> the area.

Italic text

Use <em> to denote/put emphasis on specific words:

They were *particularly* happy that day.
They were <em>particularly</em> happy that day.

Highlighted text

According to a witness, ==the door was fractured==.
According to a witness, <mark>the door was fractured</mark>.

Deleted text

My ~~friend~~ bestie is here.
My <del>friend</del> bestie is here.

Small text

--All photos in this article are edited.--
<small>All photos in this article are edited.</small>

Code and code blocks

Use backticks to insert inline code.

Use a `for` loop
Use a <code>for</code> loop

Use double backticks if the code contains backticks.

They used  ``run `test` --dev``
They used <code>run `test` --dev</code>

Use triple backticks to insert a code block.

```
function example() => true
```
<pre><code>function example() => true</code></pre>

Escape characters

Use backslashes to escape characters and prevent them from being parsed as Markdown.

This text won't be \*\*bold\*\*
This text won't be **bold**

Return to top ↑