-
思源笔记调整字体大小
2022-01-21 21:53可以使用如下样式单独设置某一段文字的字号, 下面这个例子会将字号设置为
32px
**想要调整字号的文字**{: style="font-size: 32px"}
-
手机上每次装新版本后,同步的时间太长了
2022-01-12 22:40在下载页面 下载 - 思源笔记 - 移动端 中的移动端有 iOS 公测链接, 就是图标使用了 Android 的, 可能看错了 😂
-
思源 视频时间戳
2022-01-12 20:19我补充一下 B 站的 URL 参数吧, 在使用 iframe 时可以设置
https://player.bilibili.com/player.html?cid=57016129&aid=57016129&bvid=BV1Ex411d7VY&page=1&as_wide=1&high_quality=1&danmaku=0&t=30
Key Value comment cid
int chat id
每个 chat id 对应一组弹幕池和如填了 aid, 这个字段不填也没关系aid
int article id
视频 av 号bvid
str bilibili video id
视频 bv 号
如果填了 bvid, 那么 aid 不填也可以page
int 第几个视频, 起始下标为 1
默认值为 1as_wide
bool 是否宽屏
1: 宽屏
0: 小屏high_quality
bool 是否高清
1: 高清
0: 最低视频质量(默认)danmaku
bool 是否开启弹幕
1: 开启(默认)
0: 关闭t
int 打开时, 自动跳转到某个时间, 并且自动播放
时间单位: 秒 -
1.6.0 版本模板中如何写是星期几
2022-01-01 18:29这段代码没有处理好取模的问题, 在
(mod (div ((toDate "2006-01-02" "2050-03-13").Sub now).Hours 24) 7))==0
时会失效, 因为这时导致切片会切出一个空的片段 -
SY dark+ 个人的一些调整
2021-12-28 21:08Dark+ v0.1.3 版本可以直接在
data\widgets\custom.css
文件中自定义主题了(如果没有这个文件可以新建)data\widgets\custom.css
文件中:root{}
内的变量优先级比conf\appearance\themes\Dark+\style\module\config.css
更高, 因此可以直接覆盖这种方案还可以在不同设备之间同步主题的个性化配置
-
思源笔记 - 群晖 docker 部署、升级、外网访问
2021-12-28 00:13升级可以使用 Watchtower 试试
- 项目地址: containrrr/watchtower: A process for automating Docker container base image updates.
- 项目文档: Watchtower
拉取镜像
docker pull containrrr/watchtower
更新思源可用配置
docker run \ --detach \ --name watchtower \ --volume /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --cleanup \ --interval 3600 \ --include-restarting \ --include-stopped \ --revive-stopped
默认配置
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower
- 默认自动更新所有容器
自动更新指定的容器
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ nginx redis
仅运行一次
docker run \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --run-once
- 更新后自行删除 watchtower 容器
更新后删除旧镜像
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --cleanup
设置轮询间隔
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --interval 3600
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ -i 3600
- 轮询间隔以秒为单位
同时更新停止的容器
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --include-stopped
更新停止的容器后启动容器
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --include-stopped \ --revive-stopped
同时更新正在重启的容器
docker run \ -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --include-restarting
-
块(笔记)id 怎么查看?
2021-12-23 18:06块右键菜单中的
复制块超链接
复制该块为嵌入块
与复制该块为引用块
选项都能在剪贴板中写入块 ID选项名称 剪贴板内容 块 ID 复制该块为引用块 ((20200812220555-lj3enxa '0 请从这里开始'))
20200812220555-lj3enxa 复制该块为嵌入块 {{select * from blocks where id='20200812220555-lj3enxa'}}
20200812220555-lj3enxa 复制块超链接 siyuan://blocks/20200812220555-lj3enxa
20200812220555-lj3enxa -
请问数学公式块的 KaTex 代码编辑界面能否修改字体和文字大小?
2021-12-21 00:22可以通过如下 CSS 选择器调整公式字体大小
/* 公式整体 */ .b3-typography .katex, .protyle-wysiwyg .katex { font-size: 150%; } /* 公式子项(上标, 下标等) */ .katex .msupsub { font-size: 100%; }
-
【Tsundoku】 v1.0.1 添加行内备注样式
2021-12-09 13:33支持对图片和链接的标题进行搜索 · Issue #3427 · siyuan-note/siyuan
为超链接输入框中加入标题输入框 · Issue #3586 · siyuan-note/siyuan
D 大 V 姐采纳后应该能基本解决行内备注及其搜索问题了 😄
-
[功能建议] 可不可以加入标题自动编号的功能?
2021-12-08 11:03可以自定义一下
content
属性中显示的内容counter(h1-count)
就是一级标题的编号, 以此类推, 若不需要删除即可 -
[功能建议] 可不可以加入标题自动编号的功能?
2021-12-07 12:59在主题中加入如下样式即可实现自动编号(导出为 HTML/PDF 时也能保留)
PS: 可以更改
font-size
字段调整编号的大小body { counter-reset: h1-count 0; } h1, .h1 { counter-reset: h2-count 0; } h2, .h2 { counter-reset: h3-count 0; } h3, .h3 { counter-reset: h4-count 0; } h4, .h4 { counter-reset: h5-count 0; } h5, .h5 { counter-reset: h6-count 0; } .protyle-wysiwyg [data-node-id].h1:before, .b3-typography h1:before { display: block; float: left; font-size: 50%; counter-increment: h1-count; content: counter(h1-count) "\00A0"; } .protyle-wysiwyg [data-node-id].h2:before, .b3-typography h2:before { display: block; float: left; font-size: 50%; counter-increment: h2-count; content: counter(h1-count) "."counter(h2-count) "\00A0"; } .protyle-wysiwyg [data-node-id].h3:before, .b3-typography h3:before { display: block; float: left; font-size: 50%; counter-increment: h3-count; content: counter(h1-count) "."counter(h2-count) "."counter(h3-count) "\00A0"; } .protyle-wysiwyg [data-node-id].h4:before, .b3-typography h4:before { display: block; float: left; font-size: 50%; counter-increment: h4-count; content: counter(h1-count) "."counter(h2-count) "."counter(h3-count) "."counter(h4-count) "\00A0"; } .protyle-wysiwyg [data-node-id].h5:before, .b3-typography h5:before { display: block; float: left; font-size: 50%; counter-increment: h5-count; content: counter(h1-count) "."counter(h2-count) "."counter(h3-count) "."counter(h4-count) "."counter(h5-count) "\00A0"; } .protyle-wysiwyg [data-node-id].h6:before, .b3-typography h6:before { display: block; float: left; font-size: 50%; counter-increment: h6-count; content: counter(h1-count) "."counter(h2-count) "."counter(h3-count) "."counter(h4-count) "."counter(h5-count) "."counter(h6-count) "\00A0"; }
-
关于嵌入块和 SQL 块的改进建议
2021-11-22 21:38"((内容块引用))" 代表对其他内容块单纯的引用, 不需要出现反链
"((SQL sql 语句))"或"((select 开头的语句))"等 代表查询 不需要出现反链
"{{内容块嵌入}}" 代表对其他内容块的嵌入, 需要出现在反链中
其实
((内容块引用))
与((SQL sql 语句))
是一回事, 可以用现在这种查询指定 ID 的形式实现, 结合目前的语义与用户已经养成的操作习惯, 下面这种更合适((内容块嵌入))
代表对其他内容块的嵌入, 需要出现在反链中[[内容块引用]]
代表对其他内容块的引用, 需要出现在反链中{{内容块查询}}
代表对其他内容块的查询, 不需出现在反链中这样可以保留
[[]]
与{{}}
完整的语义, 仅改变了(())
的语义, 对用户习惯的破坏程度也比较小PS: D 大 V 姐其实当初就不应该同时支持
(())
与[[]]
, 这样调整时包袱也小一些 😂