Attempt to import features from HTML tables into metadata
Opened this issue · 0 comments
renoirb commented
Those pages also has been adjusted with overview_table, so that conversion can grab the metadata.
Ensure a page that has Overview table has the table with the overview_table
classname.
==Overview Table==
{| class="wikitable overview_table"
// ...
To get pages that uses transclusion, go to https://docs.webplatformstaging.org/w/index.php?title=Special:WhatLinksHere/Template:Event&namespace=0&limit=500
To get as a simple list, run in web developer console:
var out = [];
$('#mw-whatlinkshere-list > li > a').each(function(){ var title = arguments[1].title; out.push(title.replace(/\s/g, '_')); });
console.log(out.join("\n"));