jekyll-bonsai 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +674 -0
- data/README.md +11 -0
- data/_config.yml +155 -0
- data/_entries/digital-garden.bonsai.md +36 -0
- data/_entries/digital-garden.field-logs.md +10 -0
- data/_entries/digital-garden.fork.md +10 -0
- data/_entries/digital-garden.md +17 -0
- data/_entries/digital-garden.path.md +11 -0
- data/_entries/digital-garden.plants.md +12 -0
- data/_entries/digital-garden.pollinate.md +10 -0
- data/_entries/digital-garden.steps.md +10 -0
- data/_entries/digital-garden.stream.md +12 -0
- data/_entries/digital-garden.sweep.md +12 -0
- data/_entries/digital-garden.weather.md +12 -0
- data/_entries/features.md +10 -0
- data/_entries/features.notes.hover-preview.md +10 -0
- data/_entries/features.notes.md +12 -0
- data/_entries/features.notes.note-body.md +12 -0
- data/_entries/features.notes.note-body.share.md +10 -0
- data/_entries/features.notes.note-body.sidenotes.md +52 -0
- data/_entries/features.notes.note-foot.links.md +10 -0
- data/_entries/features.notes.note-foot.md +11 -0
- data/_entries/features.notes.note-foot.posts.md +10 -0
- data/_entries/features.notes.note-foot.webmentions.md +10 -0
- data/_entries/features.notes.note-head.md +10 -0
- data/_entries/features.pages.field-blogs.md +10 -0
- data/_entries/features.pages.md +12 -0
- data/_entries/features.pages.recent.md +10 -0
- data/_entries/features.pages.status-tags.md +10 -0
- data/_entries/features.site-nav.graph.links.md +10 -0
- data/_entries/features.site-nav.graph.links.namespacing.md +14 -0
- data/_entries/features.site-nav.graph.links.wikilinks.md +25 -0
- data/_entries/features.site-nav.graph.md +12 -0
- data/_entries/features.site-nav.graph.nodes.current-note.md +10 -0
- data/_entries/features.site-nav.graph.nodes.md +12 -0
- data/_entries/features.site-nav.graph.nodes.mia.missing-note.md +20 -0
- data/_entries/features.site-nav.graph.nodes.visited-status.md +10 -0
- data/_entries/features.site-nav.graph.toggle-graph.md +13 -0
- data/_entries/features.site-nav.graph.type.md +16 -0
- data/_entries/features.site-nav.graph.type.net-web.md +10 -0
- data/_entries/features.site-nav.graph.type.tree.md +12 -0
- data/_entries/features.site-nav.md +10 -0
- data/_entries/features.site-nav.visited.md +14 -0
- data/_entries/features.tags.md +13 -0
- data/_entries/features.themes.dark.md +12 -0
- data/_entries/features.themes.light.md +10 -0
- data/_entries/features.themes.md +12 -0
- data/_entries/features.visited.delete-data.md +10 -0
- data/_entries/features.visited.md +12 -0
- data/_entries/features.visitor-preferences.md +27 -0
- data/_entries/feedback.md +10 -0
- data/_entries/people.creator.md +12 -0
- data/_entries/people.md +13 -0
- data/_entries/people.visitors.md +12 -0
- data/_entries/plugins.jekyll-wikilinks.md +10 -0
- data/_entries/plugins.md +10 -0
- data/_entries/root.md +26 -0
- data/_includes/anchor-headings.html +152 -0
- data/_includes/connect.html +44 -0
- data/_includes/entry-attrs.html +27 -0
- data/_includes/head.html +23 -0
- data/_includes/hover-preview.html +84 -0
- data/_includes/img/bullet-ancestor.svg +5 -0
- data/_includes/img/bullet-net-web.svg +9 -0
- data/_includes/img/bullet-tree.svg +9 -0
- data/_includes/metrics.html +10 -0
- data/_includes/share.html +45 -0
- data/_includes/site-nav.html +48 -0
- data/_includes/styles.scss.liquid +3 -0
- data/_layouts/default.html +39 -0
- data/_layouts/entry.html +124 -0
- data/_layouts/post.html +29 -0
- data/_layouts/state.html +59 -0
- data/_layouts/table-wrappers.html +7 -0
- data/_layouts/vendor/compress.html +10 -0
- data/_pages/about.md +7 -0
- data/_pages/posts.html +19 -0
- data/_pages/recent.html +48 -0
- data/_plugins/doc_filters.rb +44 -0
- data/_plugins/prep_entry.rb +43 -0
- data/_plugins/sidenote.rb +123 -0
- data/_plugins/tags.rb +52 -0
- data/_sass/base/_layout.scss +54 -0
- data/_sass/base/_main.scss +203 -0
- data/_sass/base/_typography.scss +75 -0
- data/_sass/base/base.scss +3 -0
- data/_sass/color/dark.scss +58 -0
- data/_sass/color/light.scss +58 -0
- data/_sass/includes/_btn.scss +106 -0
- data/_sass/includes/_graph.scss +69 -0
- data/_sass/includes/_nav.scss +89 -0
- data/_sass/includes/_site_nav.scss +221 -0
- data/_sass/includes/_tooltip.scss +29 -0
- data/_sass/includes/includes.scss +9 -0
- data/_sass/markdown/_code.scss +340 -0
- data/_sass/markdown/_content.scss +400 -0
- data/_sass/markdown/_tables.scss +60 -0
- data/_sass/markdown/markdown.scss +7 -0
- data/_sass/modules.scss +14 -0
- data/_sass/pages/_index.scss +72 -0
- data/_sass/pages/_posts.scss +17 -0
- data/_sass/pages/_recent.scss +26 -0
- data/_sass/pages/_state.scss +72 -0
- data/_sass/pages/pages.scss +4 -0
- data/_sass/support/_functions.scss +9 -0
- data/_sass/support/_variables.scss +179 -0
- data/_sass/support/mixins/_buttons.scss +27 -0
- data/_sass/support/mixins/_layout.scss +56 -0
- data/_sass/support/mixins/_typography.scss +84 -0
- data/_sass/support/mixins/mixins.scss +3 -0
- data/_sass/support/support.scss +3 -0
- data/_sass/vendor/normalize.scss/README.md +7 -0
- data/_sass/vendor/normalize.scss/normalize.scss +349 -0
- data/_states/bamboo.md +8 -0
- data/_states/berry.md +8 -0
- data/_states/bloom.md +8 -0
- data/_states/bud.md +6 -0
- data/_states/fruit.md +8 -0
- data/_states/melon.md +8 -0
- data/_states/pot-bamboo.md +8 -0
- data/_states/seed.md +8 -0
- data/_states/sprout.md +8 -0
- data/_states/tags.md +8 -0
- data/_states/tea.md +8 -0
- data/assets/css/styles-dark.scss +3 -0
- data/assets/css/styles-light.scss +3 -0
- data/assets/css/styles.scss +8 -0
- data/assets/font/Cutive_Mono/CutiveMono-Regular.ttf +0 -0
- data/assets/font/Cutive_Mono/OFL.txt +93 -0
- data/assets/font/Old_Standard_TT/OFL.txt +93 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Bold.ttf +0 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Italic.ttf +0 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Regular.ttf +0 -0
- data/assets/font/exo2/Exo2-Italic-VariableFont_wght.ttf +0 -0
- data/assets/font/exo2/Exo2-VariableFont_wght.ttf +0 -0
- data/assets/font/exo2/OFL.txt +93 -0
- data/assets/font/exo2/README.txt +81 -0
- data/assets/font/exo2/static/Exo2-Black.ttf +0 -0
- data/assets/font/exo2/static/Exo2-BlackItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Bold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-BoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraBold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraBoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraLight.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraLightItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Italic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Light.ttf +0 -0
- data/assets/font/exo2/static/Exo2-LightItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Medium.ttf +0 -0
- data/assets/font/exo2/static/Exo2-MediumItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Regular.ttf +0 -0
- data/assets/font/exo2/static/Exo2-SemiBold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-SemiBoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Thin.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ThinItalic.ttf +0 -0
- data/assets/img/bonsai-dark.png +0 -0
- data/assets/img/bonsai-dark.svg +106 -0
- data/assets/img/bonsai-light.png +0 -0
- data/assets/img/bonsai-light.svg +81 -0
- data/assets/img/favicon-dark.png +0 -0
- data/assets/img/favicon-light.png +0 -0
- data/assets/img/nav-base-dark.svg +1 -0
- data/assets/img/nav-base-light.svg +1 -0
- data/assets/img/nav-bonsai-dark.svg +1 -0
- data/assets/img/nav-bonsai-light.svg +1 -0
- data/assets/img/nav-dot-dark.svg +1 -0
- data/assets/img/nav-dot-light.svg +1 -0
- data/assets/img/nav-wiki-links-dark.svg +1 -0
- data/assets/img/nav-wiki-links-light.svg +1 -0
- data/assets/js/entry.js +102 -0
- data/assets/js/graph.js +552 -0
- data/assets/js/scripts.js +80 -0
- data/assets/js/site-nav.js +132 -0
- data/assets/js/theme-colors.js +71 -0
- data/index.html +82 -0
- metadata +360 -0
data/README.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# Jekyll-Bonsai
|
2
|
+
|
3
|
+
<img src="https://github.com/manunamz/jekyll-bonsai/blob/main/assets/img/bonsai-light.svg" width="300" height="300"/>
|
4
|
+
|
5
|
+
โ ๏ธ This Is An Experimental Template โ ๏ธ
|
6
|
+
|
7
|
+
Consider this an alpha. Expect things to change, for there to be bugs, and for the code to be pretty messy.
|
8
|
+
|
9
|
+
โ ๏ธ A Note on Scalability โ ๏ธ
|
10
|
+
|
11
|
+
In a word, it doesn't. Enough notes will cause the d3 graph to become very, very slow.
|
data/_config.yml
ADDED
@@ -0,0 +1,155 @@
|
|
1
|
+
# jekyll configs
|
2
|
+
|
3
|
+
title: jekyll-bonsai
|
4
|
+
description: A modern jekyll theme for semantically inclined digital gardeners.
|
5
|
+
author: manunamz
|
6
|
+
baseurl: '/jekyll-bonsai'
|
7
|
+
# baseurl: ''
|
8
|
+
# url: https://manunam.me
|
9
|
+
# url: 'https://manunamz.github.io'
|
10
|
+
|
11
|
+
# logo-light: "/assets/images/logo-light.png"
|
12
|
+
# logo-dark: "/assets/images/logo-dark.png"
|
13
|
+
|
14
|
+
permalink: pretty
|
15
|
+
include:
|
16
|
+
- "_pages"
|
17
|
+
exclude:
|
18
|
+
- "node_modules/"
|
19
|
+
- "package.json"
|
20
|
+
- "package-lock.json"
|
21
|
+
- "*.gemspec"
|
22
|
+
- "*.gem"
|
23
|
+
- "Gemfile"
|
24
|
+
- "Gemfile.lock"
|
25
|
+
- "script/"
|
26
|
+
- "lib/"
|
27
|
+
- "bin/"
|
28
|
+
- "Rakefile"
|
29
|
+
- "README.md"
|
30
|
+
- "CHANGELOG.txt"
|
31
|
+
- "LICENSE.txt"
|
32
|
+
|
33
|
+
collections:
|
34
|
+
entries:
|
35
|
+
output: true
|
36
|
+
# permalink: /entry/:id
|
37
|
+
# permalinks are manually generated -- see local 'prep_note' plugin.
|
38
|
+
states:
|
39
|
+
output: true
|
40
|
+
permalink: /stat/:title
|
41
|
+
order:
|
42
|
+
- tags.md
|
43
|
+
- sprout.md
|
44
|
+
- bud.md
|
45
|
+
- bamboo.md
|
46
|
+
- bloom.md
|
47
|
+
- berry.md
|
48
|
+
- fruit.md
|
49
|
+
- melon.md
|
50
|
+
- seed.md
|
51
|
+
- tea.md
|
52
|
+
- pot-bamboo.md
|
53
|
+
|
54
|
+
defaults:
|
55
|
+
- scope:
|
56
|
+
path: "_entries/**/*.md"
|
57
|
+
type: "entries"
|
58
|
+
values:
|
59
|
+
layout: "entry"
|
60
|
+
- scope:
|
61
|
+
path: "_states/**/*.md"
|
62
|
+
type: "states"
|
63
|
+
values:
|
64
|
+
layout: "state"
|
65
|
+
|
66
|
+
sass:
|
67
|
+
sass_dir: _sass
|
68
|
+
style: :compressed
|
69
|
+
|
70
|
+
enable_mathjax: true
|
71
|
+
kramdown:
|
72
|
+
math_engine: mathjax
|
73
|
+
|
74
|
+
# plugins:
|
75
|
+
# - jekyll-namespaces
|
76
|
+
# - jekyll-wikilinks
|
77
|
+
# - jekyll-feed
|
78
|
+
# - jekyll-seo-tag
|
79
|
+
# - jekyll-sitemap
|
80
|
+
|
81
|
+
#
|
82
|
+
# jekyll-bonsai configs
|
83
|
+
#
|
84
|
+
# dendron forces the root note-title to be 'root.md' -- this is the replacement title for 'root'
|
85
|
+
# (make sure you change the title in root.md file as well)
|
86
|
+
index_title: "Jekyll-Bonsai"
|
87
|
+
# graph: default graph type in side bar.
|
88
|
+
## may be 'tree' or 'net-web'
|
89
|
+
graph_type: "tree"
|
90
|
+
# nav: default nav type in side bar.
|
91
|
+
## may be 'tabs' (visited/path) or graph (bonsai)
|
92
|
+
nav_type: "graph"
|
93
|
+
# recent (weather): set number of notes to display on recent (weather) page.
|
94
|
+
## may be an integer (defaults to 10)
|
95
|
+
recent_num: 10
|
96
|
+
# local note-nav component defaults
|
97
|
+
## may be 'open' or 'closed'
|
98
|
+
entry_head_status: "open"
|
99
|
+
entry_foot_links_status: "open"
|
100
|
+
entry_foot_posts_status: "open"
|
101
|
+
social:
|
102
|
+
enabled: true
|
103
|
+
connect:
|
104
|
+
# facebook_url:
|
105
|
+
github_url: https://github.com/manunamz/
|
106
|
+
# linkedin_url:
|
107
|
+
# pinterest_url:
|
108
|
+
rss_url: https://manunam.me/feed.xml
|
109
|
+
twitter_url: https://twitter.com/manunamz/
|
110
|
+
share:
|
111
|
+
- 'email'
|
112
|
+
# - 'facebook'
|
113
|
+
# - 'linkedin'
|
114
|
+
# - 'pinterest'
|
115
|
+
- 'twitter'
|
116
|
+
|
117
|
+
compress_html:
|
118
|
+
clippings: all
|
119
|
+
comments: all
|
120
|
+
endings: all
|
121
|
+
startings: []
|
122
|
+
blank_lines: false
|
123
|
+
profile: false
|
124
|
+
|
125
|
+
# Google Analytics (ip is anonymized by default)
|
126
|
+
ga_tracking: UA-190413040-3
|
127
|
+
|
128
|
+
#
|
129
|
+
# plugins
|
130
|
+
#
|
131
|
+
namespaces:
|
132
|
+
# enabled: true
|
133
|
+
include:
|
134
|
+
- "entries"
|
135
|
+
wikilinks:
|
136
|
+
# enabled: true
|
137
|
+
exclude:
|
138
|
+
- "pages"
|
139
|
+
- "states"
|
140
|
+
d3_graph_data:
|
141
|
+
# enabled: true
|
142
|
+
# path: "/assets"
|
143
|
+
exclude:
|
144
|
+
- "pages"
|
145
|
+
- "posts"
|
146
|
+
- "states"
|
147
|
+
|
148
|
+
# seo
|
149
|
+
# tagline: ""
|
150
|
+
# description: ""
|
151
|
+
# twitter:
|
152
|
+
# card: summary
|
153
|
+
# username: manunamz
|
154
|
+
# author:
|
155
|
+
# twitter: manunamz
|
@@ -0,0 +1,36 @@
|
|
1
|
+
---
|
2
|
+
id: 77dfbf83f6
|
3
|
+
title: Bonsai
|
4
|
+
desc: ''
|
5
|
+
updated: 1624991154120
|
6
|
+
created: 1620493859775
|
7
|
+
tags: "\U0001F38B"
|
8
|
+
notable: true
|
9
|
+
---
|
10
|
+
|
11
|
+
Bonsai literally means "tray planting". It is the art of recreating a realistic picture of nature[>i] in miniaturized form. From the perspective of a site-[[people.creator]], they are seeding and pruning a `jekyll-bonsai` in a small [[features.site-nav.graph|tray-like]] space. The finer details are described well by the wikipedia article on bonsai:
|
12
|
+
|
13
|
+
> Purposes of bonsai are primarily contemplation for the [[people.visitors|viewer]], and the pleasant exercise of effort and ingenuity for the [[people.creator|grower]]. By contrast with other plant cultivation practices, bonsai is not intended for production of food or for medicine[>data]. Instead, bonsai practice focuses on long-term cultivation and shaping of one or more small trees growing in a [[features.site-nav.graph|container]]."
|
14
|
+
>
|
15
|
+
> ...
|
16
|
+
>
|
17
|
+
> A bonsai is created beginning with a specimen of source material. This may be a cutting, seedling[>seed], or small tree[>pot-bamboo] of a species suitable for bonsai development.
|
18
|
+
>
|
19
|
+
> ...
|
20
|
+
>
|
21
|
+
> Bonsai uses cultivation techniques like pruning, root reduction, potting, defoliation, and grafting to produce small trees that mimic the shape and style of mature, full-size trees.
|
22
|
+
>
|
23
|
+
> ~[wikipedia > bonsai; 2021-05-08](https://en.wikipedia.org/wiki/Bonsai)
|
24
|
+
|
25
|
+
The various steps of the process are still under experimentation and being discovered, but you can learn more by reading about about the [[digital-garden.plants|plant types]] that grow in this garden.
|
26
|
+
|
27
|
+
And because of the wonders of technology, this bonsai can be displayed for [[people.visitors]]. From their perspective, the creation is experienced as a digital garden which they may traverse at their leisure.
|
28
|
+
|
29
|
+
[>i]: read as: the internet.
|
30
|
+
|
31
|
+
[>data]: read as: "data" or "engagement".
|
32
|
+
|
33
|
+
[>seed]: ๐ฐ
|
34
|
+
|
35
|
+
[>pot-bamboo]: ๐
|
36
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: c99e15751d
|
3
|
+
title: Field Logs
|
4
|
+
desc: ''
|
5
|
+
updated: 1622903231656
|
6
|
+
created: 1622901113335
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ Field logs are personal observations and ruminations. They are blog [[features.notes.note-foot.posts]], which can be viewed on the [[features.pages.field-blogs]] page.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 7be41b1b1f
|
3
|
+
title: Fork
|
4
|
+
desc: ''
|
5
|
+
updated: 1622903869435
|
6
|
+
created: 1620492740142
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
๐ The fork in the [[digital-garden.path]] is where [[people.visitors]] may decide where to go next: To either drill down deeper through the [[features.site-nav.graph.type.tree]]'s children or hop around the [[features.site-nav.graph.type.net-web]].
|
10
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
id: e002fd0f60
|
3
|
+
title: Digital Garden
|
4
|
+
desc: ''
|
5
|
+
updated: 1626463960679
|
6
|
+
created: 1620492305910
|
7
|
+
tags: ๐
|
8
|
+
notable: true
|
9
|
+
---
|
10
|
+
|
11
|
+
The [digital gardens](https://github.com/MaggieAppleton/digital-gardeners) mentioned in [[root]] are about developing new ways of structuring knowledge and navigating digital spaces. Techniques found in the wild[>i] are typically a mix derived from [personal knowledge management](https://en.wikipedia.org/wiki/Personal_knowledge_management), [personal wikis](https://en.wikipedia.org/wiki/Personal_wiki), [zettelkasten](https://en.wikipedia.org/wiki/Zettelkasten), and [evergreen notes](https://notes.andymatuschak.org/z4SDCZQeRo4xFEQ8H4qrSqd68ucpgE6LU155C) among others.[>me]
|
12
|
+
|
13
|
+
_[[digital-garden.bonsai|Bonsai]]_ is the culmination and curation of what I have learned and built.
|
14
|
+
|
15
|
+
[>i]: read as: the internet.
|
16
|
+
|
17
|
+
[>me]: Well, at least from what I've found...so far...๐
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
id: 8179d196d7
|
3
|
+
title: Path
|
4
|
+
desc: ''
|
5
|
+
updated: 1622911875817
|
6
|
+
created: 1620492802357
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ค The [[features.notes.note-head]] is the path from the site's root to the current note. It's a bit of landscape built from the [[features.site-nav.graph.type.tree]] that provides context for the current concept.
|
11
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 19f701acb2
|
3
|
+
title: Plants
|
4
|
+
desc: ''
|
5
|
+
updated: 1626296774584
|
6
|
+
created: 1620493511415
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
|
10
|
+
Plant types are defined with [[features.tags]]. You can click the ๐ for more detailed information at the [[features.pages.status-tags]] page.
|
11
|
+
|
12
|
+
One thing to keep in mind is that the tagging for this site is more of a blend of the descriptions herein and the philosophical drivers of this site's design.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 8269f156b2
|
3
|
+
title: Pollinate
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851074627
|
6
|
+
created: 1622905274852
|
7
|
+
tags: ๐ฑ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ Help [[digital-garden.plants]] grow in the garden by [[features.notes.note-body.share|sharing]] to stimulate cross-pollination...But no stinging, please.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
id: 7fb84949c2
|
3
|
+
title: Steps
|
4
|
+
desc: ''
|
5
|
+
updated: 1624990132504
|
6
|
+
created: 1622906343832
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ฅพ The steps [[people.visitors]] take in the garden form a trail which may be traversed to re-[[features.visited|visit]] what's been previously seen.
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 506bb3c66e
|
3
|
+
title: Stream
|
4
|
+
desc: ''
|
5
|
+
updated: 1624739035593
|
6
|
+
created: 1622901056839
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ [[features.notes.note-foot.webmentions]] are represented as the stream: It's a flow of social interaction that, if one is not careful, can easily get swept up in.
|
11
|
+
|
12
|
+
> "To go down to the water, the chaotic water and source of all life, is to risk an encounter with the terrible thing that lurks in the depths."
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: aa265ceb2f
|
3
|
+
title: Sweep
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851670041
|
6
|
+
created: 1622911160563
|
7
|
+
tags: ๐ฑ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐งน Sweeping one's [[digital-garden.steps]] is the act of [[features.visited.delete-data|deleting]] data.
|
11
|
+
|
12
|
+
While not equivalent in meaning, the notion is a hat-tip to the hiker/camper's notion of [Leave No Trace](https://en.wikipedia.org/wiki/Leave_No_Trace).
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 0315db1dcc
|
3
|
+
title: Weather
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851207617
|
6
|
+
created: 1620492879316
|
7
|
+
tags: ๐ฟ
|
8
|
+
---
|
9
|
+
|
10
|
+
๐ฆ The [[features.pages.recent]] page gives [[people.visitors]] a sense of what [[features.notes]] have changed[>ha] recently.
|
11
|
+
|
12
|
+
[>ha]: Time to get used to change ๐, ya'll.
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 4fd03d1501
|
3
|
+
title: Notes
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851234604
|
6
|
+
created: 1620411880535
|
7
|
+
tags: "\U0001F38B"
|
8
|
+
notable: true
|
9
|
+
---
|
10
|
+
The focus of this template are notes: Atomic concepts and ideas that are, ideally, meaningfully [[features.site-nav.graph.links|linked]].
|
11
|
+
|
12
|
+
You can navigate notes via their various parts (see children notes) or the [[features.site-nav.graph]].
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
id: 1646d01db5
|
3
|
+
title: Note Body
|
4
|
+
desc: ''
|
5
|
+
updated: 1623851249517
|
6
|
+
created: 1620505728158
|
7
|
+
tags: "\U0001F33F"
|
8
|
+
---
|
9
|
+
The note body displays the note's title, [[digital-garden.plants|plant]] [[features.tags|tag]], and the time the note was last updated.
|
10
|
+
|
11
|
+
Note content is rendered in markdown. Some extensions are listed in the children notes.
|
12
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
---
|
2
|
+
id: 95a80b4157
|
3
|
+
title: Sidenotes
|
4
|
+
desc: ''
|
5
|
+
updated: 1623870486255
|
6
|
+
created: 1620408418339
|
7
|
+
tags: "\U0001F331"
|
8
|
+
---
|
9
|
+
Special syntax for sidenotes is supported. Their syntax is reminiscent of traditional markdown footnotes. In markdown files, they look like this (without spaces around the left/right carrots):
|
10
|
+
|
11
|
+
```
|
12
|
+
This is what a left-sidenote[ < left] and a right-sidenote[ > right] look like.
|
13
|
+
|
14
|
+
[ < left]: the syntax looks similar to...
|
15
|
+
[ > right]: ...regular markdown footnotes.
|
16
|
+
```
|
17
|
+
|
18
|
+
Which, once rendered, looks like:
|
19
|
+
|
20
|
+
* * *
|
21
|
+
|
22
|
+
This is what a right-sidenote[<left] and a left-sidenote[>right] look like.
|
23
|
+
|
24
|
+
* * *
|
25
|
+
|
26
|
+
On medium to small sized screens, you can click on sidenote superscripts to show or hide their content.
|
27
|
+
|
28
|
+
## Notable Quirks
|
29
|
+
|
30
|
+
- Sidenotes increment together, but separately from footnotes[^foot]. So, for example, it's possible for there to be a '1' for both a standard markdown footnote and a sidenote.
|
31
|
+
- Sidenotes require an "\\n" after each definition to parse properly. A warning will display if there are missing newlines (regardless of sidenotes).
|
32
|
+
|
33
|
+
## Influences
|
34
|
+
|
35
|
+
- [tufte css](https://github.com/edwardtufte/tufte-css), for clean'n'simple sidenote css implementation.
|
36
|
+
- [simply jekyll](https://github.com/raghuveerdotnet/simply-jekyll), how to implement tufte css in jekyll.
|
37
|
+
- [gwern.net](https://github.com/gwern/gwern.net), for sidenote implementation comparisons.
|
38
|
+
|
39
|
+
## Proposal
|
40
|
+
|
41
|
+
Would Kramdown be interested in integrating this functionality?
|
42
|
+
|
43
|
+
[<left]: the syntax looks similar to...[^left-quirk]
|
44
|
+
|
45
|
+
[>right]: ...regular markdown footnotes.
|
46
|
+
|
47
|
+
[^foot]: A regular markdown footnote.
|
48
|
+
|
49
|
+
[^left-quirk]: Left sidenotes are functional for completeness sake, but this theme is not optimized for them as their placement above the [[features.site-nav.graph]] is rather awkward.
|
50
|
+
|
51
|
+
[^num]: Footnotes, however, increment separately and the superscripts are clickable on all sized screens, unlike sidenote superscripts, which are only clickable on medium and small sized screens.
|
52
|
+
|