feat: add dr who list
This commit is contained in:
parent
4ebfd67b2e
commit
f8b52c8dbe
2 changed files with 39 additions and 1 deletions
35
content/writing/doctor-who-ranked.md
Normal file
35
content/writing/doctor-who-ranked.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
title: Doctor Who episodes ranked
|
||||
pubdate: 2024-03-25T13:10:30.001Z
|
||||
desc: All doctor who episodes (eventually) between 2005 and 20014 ranked into tiers.
|
||||
---
|
||||
# Doctor Who episodes (2005 - 2014)
|
||||
|
||||
All doctor who episodes (eventually) between 2005 and 20014 ranked into tiers. Anything after 2014 with Peter Capaldi as The Doctor isn't included, as they're so bad I refuse to acknowledge their existence 🤓
|
||||
|
||||
Tiers are:
|
||||
|
||||
* **S**: Stellar, amazing, groundbreaking, no notes.
|
||||
* **A**: Overall pretty damn good. Not quite reaching into S tier.
|
||||
* **B**: Better than the average Dr. Who episode. Nothing amazing, but a bit better than run-of-the-mill.
|
||||
* **C**: Your bog-standard Who. Nothing special.
|
||||
* **D**: Bit of a let-down, but we've had worse...
|
||||
* **E**: Bottom of the barrel. You wouldn't watch these if you had a choice.
|
||||
* **F**: Absolute dog shit, laughably bad, what were they thinking?
|
||||
|
||||
## The List
|
||||
|
||||
| Tier | Title | Season | Episode | Notes |
|
||||
| ---- | ------------------------- | ------ | ------- | ----- |
|
||||
| S | The Girl in The Fireplace | S2 | E4 | |
|
||||
| S | Blink | S3 | E10 | |
|
||||
| S | Midnight | S4 | E10 | |
|
||||
| S | Silence in The Library | S4 | E8 | |
|
||||
| S | The Impossible Planet | S2 | E8 | |
|
||||
| S | The Satan Pit | S2 | E9 | |
|
||||
| A | The Doctor's Wife | S6 | E4 | |
|
||||
| B | Forest of The Dead | S4 | E9 | |
|
||||
| C | The End of The World | S1 | E2 | |
|
||||
| C | Tooth and Claw | S2 | E2 | |
|
||||
| E | Closing Time | S6 | E12 | |
|
||||
| F | Love and Monsters | S2 | E10 | |
|
|
@ -10,7 +10,10 @@ export function getMarkdownEntry (path) {
|
|||
|
||||
const { attributes, body } = fm(fileContents)
|
||||
|
||||
const converter = new showdown.Converter()
|
||||
const converter = new showdown.Converter({
|
||||
tables: true,
|
||||
tablesHeaderId: true
|
||||
})
|
||||
const html = converter.makeHtml(body)
|
||||
|
||||
const slug = toSlug(path.substring(path.lastIndexOf('/') + 1))
|
||||
|
|
Loading…
Add table
Reference in a new issue