The standard paragraphs
Welcome to this demo page! Here, you’ll get an exclusive preview of our cutting-edge platform designed to revolutionise your digital experience. Our intuitive interface, powered by the latest advancements in technology, offers seamless navigation and unparalleled functionality. Explore the various features that make our platform stand out, including real-time data analytics, customisable dashboards, and robust security measures to protect your information. Whether you’re a small business looking to streamline operations or a large enterprise aiming to enhance customer engagement, our solution is tailored to meet your needs. Dive in and discover how we can transform your digital landscape.
Headings by default:
H1 Default styles for headings
H2 Default styles for headings
H3 Default styles for headings
H4 Default styles for headings
H5 Default styles for headings
H6 Default styles for headings
Tables
Header 1 | Header 2 | Header 3 | Header 4 | Header 5 |
---|---|---|---|---|
Row:1 Cell:1 | Row:1 Cell:2 | Row:1 Cell:3 | Row:1 Cell:4 | Row:1 Cell:5 |
Row:2 Cell:1 | Row:2 Cell:2 | Row:2 Cell:3 | Row:2 Cell:4 | Row:2 Cell:5 |
Row:3 Cell:1 | Row:3 Cell:2 | Row:3 Cell:3 | Row:3 Cell:4 | Row:3 Cell:5 |
Row:4 Cell:1 | Row:4 Cell:2 | Row:4 Cell:3 | Row:4 Cell:4 | Row:4 Cell:5 |
Row:5 Cell:1 | Row:5 Cell:2 | Row:5 Cell:3 | Row:5 Cell:4 | Row:5 Cell:5 |
Row:6 Cell:1 | Row:6 Cell:2 | Row:6 Cell:3 | Row:6 Cell:4 | Row:6 Cell:5 |
Quotes
A quote looks like this:
The longer I live, the more I realize that I am never wrong about anything, and that all the pains I have so humbly taken to verify my notions have only wasted my time!
– George Bernard Shaw
Lists
Unordered list example:
- Poutine drinking vinegar bitters.
- Coloring book distillery fanny pack.
- Venmo biodiesel gentrify enamel pin meditation.
- Jean shorts shaman listicle pickled portland.
- Salvia mumblecore brunch iPhone migas.
Ordered list example:
- Bitters semiotics vice thundercats synth.
- Literally cred narwhal bitters wayfarers.
- Kale chips chartreuse paleo tbh street art marfa.
- Mlkshk polaroid sriracha brooklyn.
- Pug you probably haven’t heard of them air plant man bun.
Syntax Highlighter
public class Program
{
public static void Main(string[] args)
{
System.Console.WriteLine("Hello, World!");
}
}
import re
import sys
import urllib.request
from pathlib import Path
IMG_RE = re.compile('<img[^>]+src="https:\/\/(?P<src>[^"]+)"')
DATE_RE = re.compile('(?P<date>[0-9]+\-[0-9]+\-[0-9]+)')
THUMB_RE = re.compile('thumbnail: (?P<thumb>.+)')
files = sorted(Path("_posts").glob("*.html"))
for file in files:
filename = file.absolute().as_posix()
date_prefix = DATE_RE.search(filename).group('date')
with open(filename, 'r') as f:
file_index = 0
contents = f.read()
for match in IMG_RE.finditer(contents):
sourceurl = f"https://{match.group('src')}"
thumburl = THUMB_RE.findall(contents)[0]
extstart = sourceurl.rfind('.')
extension = sourceurl[extstart:]
newfile = date_prefix + '-image-{:04d}{}'.format(file_index, extension)
file_index += 1
print('{} => {}'.format(sourceurl, newfile))
urllib.request.urlretrieve(sourceurl, '../assets/posts/blogger/' + newfile)
contents = contents.replace(sourceurl, '/assets/posts/blogger/' + newfile)
contents = contents.replace(thumburl, '/assets/posts/blogger/' + newfile)
with open(filename, 'w') as f:
f.write(contents)
YouTube Embed
Vimeo Embed