1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { extractValInfo } from "https://esm.town/v/pomdtr/extractValInfo";
import { valItem } from "https://esm.town/v/pomdtr/tree_val";
const { htmlUrl } = extractValInfo(import.meta.url);
export default {
title: "🏷️ Tags",
expanded: true,
actions: [
{
type: "open",
icon: "✏️",
url: htmlUrl,
},
],
children: [{
children: "/tags/example",
title: "#example",
}, {
children: "/tags/blog",
title: "#blog",
}, {
children: "/tags/web",
title: "#web",
}],
};