I had some pretty good ideas for this blog a while ago, but now I’ve forgotten them all. The rest of this post will be a markdown demo.
Anyways this is what italicized text, bold text, and links look like.
Quotes
If the French noblesse had been capable of playing cricket with their peasants, their chateaux would never have been burnt.
Code sample
function memoize<T: Function>(f: T): T {
const cache = {};
function m(...args) {
const k = JSON.stringify(args);
if (cache[k]) {
return cache[k];
}
const result = f(...args);
cache[k] = result;
return result;
}
return ((m: any): T);
}
Lists
- Ignore blog
- Stop ignoring blog
- Make unordered list
- Make ordered list
Headings
HI
HI
HI
HI
HI
HI
Tables
Tables | Are | Cool |
---|---|---|
col 1 is | left-aligned | $1600 |
col 2 is | centered | $12 |
col 3 is | right-aligned | $1 |