There are story pages across all of these wikis and I am hoping to pull them together into some sort of cohesive whole or at least a framing that I will add additional pages to make a compelling and comprehensive story.
Add a Journal Fork Survey to each of these sites. That will list pages with forks. Here we examine the same survey but list pages that have not been forked.
kavita.becoming.ustawi.wiki kavita.purpose.ustawi.wiki kavita.genius.ustawi.wiki
CLICK NEIGHBORS kavita Journal Fork Survey CODE PREVIEW synopsis items
export default function () { const empty = 'A page with 0 items.' const creator = info => !info.forks?.length const created = info => info.synopsis != empty const items = this.items = this.neighborhood .filter(creator) .filter(created) .sort((a,b) => b.date - a.date) .map(reference) return `${items.length} items` }
function reference (info) { return { type:"reference", site:info.domain, slug:info.slug, title:info.title, text:info.synopsis.slice(0,150) } }
Tip: try exposing the full synopsis by removing the "slice" above. Then use the Command-F text search to filter through possibly related creator pages.