Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anarion80/siyuan-bullet-threading
SiYuan plugin for nested lists bullet threading
https://github.com/anarion80/siyuan-bullet-threading
siyuan siyuan-note siyuan-plugin
Last synced: about 1 month ago
JSON representation
SiYuan plugin for nested lists bullet threading
- Host: GitHub
- URL: https://github.com/anarion80/siyuan-bullet-threading
- Owner: anarion80
- License: mit
- Created: 2024-11-04T19:23:03.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T19:31:25.000Z (2 months ago)
- Last Synced: 2024-11-04T20:31:46.304Z (2 months ago)
- Topics: siyuan, siyuan-note, siyuan-plugin
- Language: SCSS
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## ✨ Plugin description
This is a plugin that adds bullet threading to nested lists (unordered, ordered, TODOs).
It is just extracted and repackaged plugin from excellent [Rem-Craft](https://github.com/svchord/Rem-Craft) theme (I didn't want to use the whoel theme, just bullet threading), so all credit goes to [svchord](https://github.com/svchord).
I did change alignment of the lines a little bit though, as the lines were not connecting in the middle of a bullet/number.
The plugin originally comes from LogSeq version of bullet threading: [https://github.com/pengx17/logseq-plugin-bullet-threading](https://github.com/pengx17/logseq-plugin-bullet-threading).
## ⌨ Usage
Just add some nested lists and focus one them (cursor/scroll). The plugin does not come with any styling so the lines between bullets will be white/black in dark/light modes respecively. It should change to the value of `--text-brand` when available in the theme used.
If `--text-brand` is not available in your theme, you can add the following code snippet in SiYuan settings to set the colors:
```css
:root {
--text-brand: rgb(69, 130, 230);
}:root.dark {
--text-brand: rgb(97, 175, 239);
}
```