Skip to main content
mini me TrickeySolutionsLogo

Creating this blog using 11ty and Cloudflare Pages.

This is where we will have the actual content of the blog posts

it will be really useful to refer to this cheat sheet for markdown when composing my blog posts https://www.markdownguide.org/cheat-sheet/

"Somebody once said this was awesome!"

Prequisites #

Here's a sentence with a footnote. [^1]

Capitalize on low hanging fruit to identify a ballpark value added activity to beta test. Override the digital divide with additional clickthroughs from DevOps. Nanotechnology immersion along the information highway will close the loop on focusing solely on the bottom line.

Code snippets #

some times you just need to show some code in a blog post: this is a dead simple example

 // this is a command
 function myCommand() {
+  let counter = 0;
-  let counter = 1;
   counter++;
 }

 // Test with a line break above this line.
 console.log('Test');

and then there will be a load more stuff

Syntax Description
Header Title
Paragraph Text

[^1]: This is the footnote.