this is the page title!

heading h2
some content
heading h2
another content
heading 😂 h2
some more content
heading h2 2
i am a paragraph in markdown with line wrapping so it fits this width. i am a continuation of the first paragraph as there is no empty line before me.
i am in the second paragraph.
i am the third one. even thought there are two line breaks before me, this does not create any newline characters. after me there are two spaces before the newline character.
another heading h2
#just a tag # not a heading
list:
- this is a list element
- this is another element
- this is gadha
- this is another gadha
- this is yet another element
- this is a plus list
numbered list:
- point 1
- point 2
- point 3 with subpoints
- subpoint 1
- gadha
- pig
- subpoint 2
- gadha again
code block
|
|
.
abc
.xyz
gadha
block quote
hello world this is a preformatted text
. thanks!
this text is emphasised
this text is bold
this text is bold and emphasised
this text is italics this text is bold
copyright: © registered trademark: ® less than: < greater than: > ampersand: & smiley: 😄 embedded html: x2
some raw html
shape: (512, 512, 3)
input image dimensions: 3 (rgb)
pre-trained on imagenet
output: (16, 16, 2048)
feature map
output: (524288,)
converts feature map to 1d vector
64 neurons, relu
output: (64,)
first fully connected layer
32 neurons, relu
output: (32,)
second fully connected layer
1 neuron, linear
output: (1,)
final regression output
tables
name | job |
---|---|
alex | web developer |
bob | sys admin |
gabby | technical writer |
header 1 | header 2 | header 3 |
---|---|---|
cell 1 | cell 2 | cell 3 |
cell 4 | cell 5 | cell 6 |
left-aligned | center-aligned | right-aligned |
---|---|---|
left | center | right |
text | text | text |
task lists
- task 1
- task 2
- task 3
code blocks
|
|
some c++ code block!
|
|
Shortcodes
code/html:
12345678910<h1>Hugo Shortcodes</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Click Me</button> <p>The above button has been clicked <span>0</span> times.</p> <p>Para-1</p> <p>Para-2</p>
12345678910body { background-color: wheat; scrollbar-color: red orange; } button { background-color: yellowgreen; border-radius: 0.25rem; cursor: pointer; }
12345678910window.addEventListener("DOMContentLoaded", () => { const dom_button = document.querySelector("button"); dom_button.addEventListener("click", () => { const dom_span = document.querySelector("span"); const count = parseInt(dom_span.textContent); dom_span.textContent = count + 1; }); });
this is the end of document!