[ Experiments ]

this is the page title!

Created:

Updated:

Read: 3 min (486 words)

Tags:

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:

numbered list:

  1. point 1
  2. point 2
  3. point 3 with subpoints
    1. subpoint 1
    • gadha
    • pig
    1. subpoint 2
    2. gadha again

code block

1
echo hello world this is a test line. we will make it a very very very very long line so, that we can test the limits of a single line in a code block. hope this helps!

.


abc

.xyz


gadha

block quote

hello world this is a preformatted text. thanks!

visible text

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

input layer

shape: (512, 512, 3)

input image dimensions: 3 (rgb)

â–¼
xception base model

pre-trained on imagenet

output: (16, 16, 2048)

feature map

â–¼
flatten layer

output: (524288,)

converts feature map to 1d vector

â–¼
dense layer

64 neurons, relu

output: (64,)

first fully connected layer

â–¼
dense layer

32 neurons, relu

output: (32,)

second fully connected layer

â–¼
dense layer

1 neuron, linear

output: (1,)

final regression output

tables

namejob
alexweb developer
bobsys admin
gabbytechnical writer
header 1header 2header 3
cell 1cell 2cell 3
cell 4cell 5cell 6
left-alignedcenter-alignedright-aligned
leftcenterright
texttexttext

task lists

code blocks

1
2
3
var x = 10;
x++;
console.log(x);

some c++ code block!

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#include <iostream>
#include <cstdint>

typedef uint16_t u16;
typedef uint32_t u32;

int main()
{
    std::cout << "hello world" << std::endl;
    return 0;
}

Shortcodes

code/html:



1
2
3
4
5
6
7
8
9
10
<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>


1
2
3
4
5
6
7
8
9
10
body { background-color: wheat; scrollbar-color: red orange; } button { background-color: yellowgreen; border-radius: 0.25rem; cursor: pointer; }


1
2
3
4
5
6
7
8
9
10
window.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!