MarkMark - add sha256 hashing (+update HTML renderer to insert IDs), update MD renderer to include dates, add syndication for bookmarks

This commit is contained in:
2024-12-31 13:50:54 -05:00
parent 832190f875
commit b5450c6100
9 changed files with 153 additions and 10 deletions

View File

@@ -20,6 +20,7 @@ export const isNamedSection = (what: Section): what is NamedSection =>
hasOwnProperty(what, 'title') && (typeof what.title === 'string')
export type Link = {
hash: string,
title: string,
date?: Date,
tags: string[],