sourcehypertextpubliccopypasteen.pug

extends ../../views/layout.pug

append presets
	- hasComments = false;

append head
	style.
		body {
			font-family: var(--sans-serif);
		}

		table {
			margin: auto;
		}
		
		table strong, .copypastable {
			font-weight: normal;
			font-size: 2em;
		}
		
		table strong {
			padding-inline-start: 1em;
		}
		
		.proofing p {
			hyphens: none;
			text-align: inline-start;
		}

block content
	p This is mostly for my own reference. Most stuff i have AutoHotKey set up for, or the Windows emoji keyboard can handle, but sometimes... it just isn't worth the effort, you know?

	+h2('Greek numerals')

	table
		tr
			td
				strong α
			td 1
			td
				strong ι
			td 10
			td
				strong ρ
			td 100
		tr
			td
				strong β
			td 2
			td
				strong κ
			td 20
			td
				strong σ
			td 200
		tr
			td
				strong γ
			td 3
			td
				strong λ
			td 30
			td
				strong τ
			td 300
		tr
			td
				strong δ
			td 4
			td
				strong μ
			td 40
			td
				strong υ
			td 400
		tr
			td
				strong ε
			td 5
			td
				strong ν
			td 50
			td
				strong φ
			td 500
		tr
			td
				strong ϛ
			td 6
			td
				strong ξ
			td 60
			td
				strong χ
			td 600
		tr
			td
				strong ζ
			td 7
			td
				strong ο
			td 70
			td
				strong ψ
			td 700
		tr
			td
				strong η
			td 8
			td
				strong π
			td 80
			td
				strong ω
			td 800
		tr
			td
				strong θ
			td 9
			td
				strong ϟ
			td 90
			td
				strong ϡ
			td 900
	
	+h2('Days of the week (and more)')

	.copypastable.centre ☽ ☾ ♂ ☿ ♃ ♀ ♄ ☉

	+h2('Regex for words longer than ten letters')

	pre
		:highlight(lang = 'plaintext')
			[^\s\p{P}]{11,}

	p: small (Created 2020-10-24, updated 2023-07-08)

	+h2('Big ol’ under construction sign')

	.under-construction
		strong This page is under construction
		|  since yyyy-mm-dd
	
	p Copypastable version:

	pre
		:highlight(lang = 'html')
			<div class="under-construction">
				<strong>This page is under construction</strong>
				since yyyy-mm-dd
			</div>