InterWiki

  • @dtinth: by the way, i heard about federating wiki content into a “constellation” like thing — last year i was trying to do something similar, but it didn’t went anywhere yet. anyways i wrote some study notes on how Obsidian and Quartz represent their sitemap.
  • It may be useful in coming up with a simple data format for federation, so that different sites can provide parts of the graph.
  • https://notes.dt.in.th/20220721T133512Z2087
// Quartz
const siteIndex: SiteIndex = {
  links: [
    {
	    text: '<link>'
	    source: 'A',
	    target: 'B',
		},
  ],
 
  index: {
    links: {
      A: ['B'],
    },
    backlinks: {
      B: ['A']
    }
  }
}
 
// Obsidian Publish
const siteIndex: SiteIndex = {
	A: {
		headings: [
			{
				heading: "Heading",
				level: 1,
				pos: []
			},
		],
		links: [
			{
				displayText: "book",
				link: "/books",
				pos: []
			}
		]
	}
}

#concept