id stringlengths 1 64 | article stringlengths 10 699k | ns stringclasses 829
values | err null |
|---|---|---|---|
LaDolcezzaEsisteDavvero | # It Sugar Wiki - La dolcezza esiste davvero!
Benvenuti nel lato Più Luminoso E Tenero di TV Tropes! Se la TV tropes principale è giusto nel mezzo della Scala Graduata Di Idealismo Contro Cinismo, noi sicuramente ci siamo lanciato verso il punto più idealistico! La positività la fa da padrone qui!
Qui, il cielo rosa ... | ItSugarWiki | null |
Webcomics | # One Winged Angel - Webcomics
---
* In *Acorn Grove*, you only get a hint of the devil's true form in silhouette. Can't really make out anything other than lots of tentacles.
* It wouldn't be a proper RPG-spoofing webcomic if *Adventurers!* didn't have an instance of this. (Also pictured in title)
+ Parodied much ... | OneWingedAngel | null |
WesternAnimation | # The Bus Came Back - Western Animation
* *Adventure Time*
+ After not being seen since his first appearance in "What Is Life?", NEPTR suddenly reappears in "Hot to the Touch"; apparently his three-season absence was the result of a game of Hide and No Seek.
> **NEPTR:** I am the ultimate hide-and-seek champion!... | TheBusCameBack | null |
Film | # Good Is Not Soft - Film
The following have their own pages:
-----------------------------------
* The DCU
* Marvel Universe
---
* *The Book of Life*:
+ Manolo Sanchez is a Nice Guy and loves to play the guitar. *Don't* piss him off.
+ La Muerte is a sweetheart. But, has her limits. And when they are pushed, s... | GoodIsNotSoft | null |
TropesMToP | # Rick And Morty - Tropes M to P
* MacGuffin: Rick's Portal Gun is one of his most important and famous inventions in (and outside of) the series. Many of his enemies, including the Galactic Federation, are those who scheme to steal the gun or the formula to the fluid that powers it from him. It is crucial for Rick's ... | RickAndMorty | null |
Webcomics | # What Happened To The Mouse - Webcomics
---
* In the final arc of *The Adventures of Dr. McNinja*, Doc's ally Martin was last seen Bound and Gagged in King Radical's lair ||after Doc's family was tricked into betraying him.|| He makes no further appearances after that and there's no indication that anyone went to re... | WhatHappenedToTheMouse | null |
ProductionCompanyExamples | # Channel Hop - Production Company Examples
* The 1980s *Alvin and the Chipmunks* series started out being animated by Ruby-Spears (a sister studio to Hanna-Barbera) for its first five seasons, before animation was switched over to DiC for the final three seasons, with 11 episodes in season six done by Murakami-Wolf-S... | ChannelHop | null |
EdIlFandomEsulto | # It Sugar Wiki - Ed Il Fandom Esulto
Allora, finalmente stanno producendo Il film del vostro franchise (probabilmente risalente a Gli Anni Ottanta). E vi fa schifo. Stanno facendo il casting a caso, hanno assunto il regista sbagliato, stanno rovinando la vostra infanzia ecc...
E poi tirano fuori quell'unica cosa che... | ItSugarWiki | null |
SouthPark | # Insufferable Imbecile - South Park
*South Park* Is a show where a lot of characters are either assholes or idiots, so it's no surprise that dimwitted jerks in this show are quite common:
* Eric Cartman may be cunning when it comes to creating evil schemes at times, but he's otherwise dimwitted and clueless, and som... | InsufferableImbecile | null |
SuperSentai | # Actor Allusion - Super Sentai
Actor Allusions in *Super Sentai*:
* *Kyōryū Sentai Zyuranger*
+ Boi learns ninjutsu in an episode titled "Ninja Warrior Boi". This is a reference to Hashimoto's previous role as Manabu Yamaji in *Sekai Ninja Sen Jiraiya*.
+ Later, Geki would fight a giant monster again, now alone ... | ActorAllusion | null |
TvTroper-2025
A cleaned & refreshed dump of ~708 k pages from tvtropes.org
Dataset Summary
TvTroper-2025 is an updated snapshot of TvTropes.org (≈ 708 000 wiki pages, namespaces and date-grouped pages excluded). Every page is released in two flavours:
- Raw HTML – 22 GB single file
- Markdown-cleaned – split into 1 GB JSONL shards (no unpacking required)
No additional content filtering has been applied; short sub-index pages are left in so you can decide what to drop.
What's changed since the 2023 release?
- Crawler re-written from scratch; BeautifulSoup -> Selectolax for speed & memory.
- Made a selectolax version of markdownify.
- Output is now native JSONL (no zips).
- Raw dumps keep only the main article body; headers/footers/nav stripped.
- Cleaned version ships side-by-side with raw dumps in the same repo.
- Changes for Cleaned Version:
- Additional markdown syntax:
||Spoilers||are marked similarly to discord^Super Script^for Super script
- Additional markdown syntax:
Intended uses
Unsupervised pre-training or fine-tuning of language models with a focus on narrative patterns, tropes, themes and pop-culture knowledge. Down-stream ideas: text generation, classification, controllable story generation, trope-aware summarisation.
Languages
English (en)
Dataset structure
Each line is a single JSON object:
{
"id": "RealLife",
"article": "# Spanner In The Works - Real Life\n\n...",
"ns": "SpannerInTheWorks",
"err": null
}
Fields
id– TvTropes page key (final URL slug; may differ from original redirect).article– page content; raw HTML or Markdown (check config).ns– namespace stub the crawler recorded when the page was fetched.
Special namespaces you may wish to drop:SugarWiki,DarthWiki,YMMV,WMG,Trivia,Administrivia.
"What are these?"- SugarWiki – gushy fan praise.
- DarthWiki – mirror-rant pages.
- YMMV – subjective fan reactions (Your Mileage May Vary).
- WMG – Wild Mass Guessing, fan theories without proof.
- Trivia – out-of-universe production notes.
- Administrivia – site-maintenance stubs, no narrative content.
err– HTTP / parsing error string;nullif the scrape succeeded.
Quick main-namespace filter
# discard the special namespaces above
# If you wanna go faster (Recommended):
# 1. Replace `json` with `orjson` (external package required)
# 2. Change `r` to `rb` & `w` with `wb`
import json, pathlib, sys
for file in pathlib.Path("data/").glob("*.jsonl"):
clean = file.with_suffix(".main.jsonl")
with open(file,"r",encoding="utf-8") as fin, open(clean,"w",encoding="utf-8") as fout:
for line in fin:
row = json.loads(line)
if row.get("ns") in {"SugarWiki", "DarthWiki", "YMMV", "WMG", "Trivia", "Administrivia"}:
continue
fout.write(line)
Splits
No canonical train/val/test split.
Markdown-cleaned: 17 x 1 GB shards Raw HTML: 1 x 22 GB file
Data collection
TvTropes.org editors produced the original text.
We crawled every reachable page during October 2025, kept the 200 OK responses, and stored the literal HTML.
No normalization, de-duplication or PII scrubbing was performed.
Biases & limitations
- Reflects the demographics, opinions and humor of the TvTropes contributor base.
- Contains spoilers, informal prose, in-jokes, and occasionally NSFW language.
- Short disambiguation/index pages are retained—filter them if you need long-form text only.
- No manual balancing across media types (anime, games, film, etc.).
Licensing
Dataset wrapper & extraction code: Apache 2.0 (copyright © 2025 KaraKaraWitch)
Fair-use media excerpts may appear in raw HTML; these remain under their respective owners.
Citation
@misc{tvtroper2025,
title = {{TvTroper-2025}: A {TVTropes.org} Corpus},
author = {KaraKaraWitch},
year = {2025},
howpublished = {\url{https://huggingface.co/datasets/KaraKaraWitch/TvTroper-2025}}
}
Contributions
Curator: @KaraKaraWitch
Release Climate Notes
Open, unencumbered dumps like this one are becoming an endangered species. Use, share and (re)release while you still can.
- Downloads last month
- 98