-
有没有画廊视图的替代品?
2024-10-12 10:05.av__cellassetimg { width: 100% !important; height: auto !important; max-height: none !important; }
数据库图片全宽 css
-
批量导入文档到数据库 0.0.6 版全新发布
2024-10-10 10:09请教一下如何获取到数据库绑定块 id 的面包屑 · Issue #71 · OpaqueGlass/syplugin-hierarchyNavigate (github.com)
我也向层级导航插件的作者询问了 他对获取面包屑比较熟练
-
批量导入文档到数据库 0.0.6 版全新发布
2024-10-09 19:10感谢大佬 脚本很有用 我这里还有个需求不知道能不能实现 我用
select * from blocks
where path like '%${docBlockId}%' and markdown like '%✨%' and (type ='p' or type='h' or type='d' or type='t') order by created asc,sort asc ;来整理一个文档的所有标记好的知识点用于复习 同时 我希望他们添加到数据库时能够读取他们的面包屑该如何实现 (面包屑不行,母一级标题也行 )我想到的可以用脚本先写入面包屑到属性里 -
aris 主题左上角思源的图标被吃掉一块
2024-09-13 09:55自定义外观 css
#dockLeft { z-index: 0!important; /* Add additional styles here */ }
-
数据库一些列的值能否自动获取文档里的数据
2024-06-24 16:22大佬,可以根据标题序号获取所属文档的对应标题吗,数据库长这样 章节是数据列
我让 gpt4 写都搞不定
```go .action{ $d := .章节 | int } .action{ $blocks := queryBlocks "SELECT root_id FROM blocks WHERE id='?'" .id } .action{ if not (empty $blocks) } .action{ $rootID := (first $blocks).root_id } .action{ $chapters := queryBlocks "SELECT * FROM blocks WHERE root_id = '?' AND type = 'h1' AND subtype = 'h1'" $rootID } .action{ $currentChapter := 1 } .action{ $title := "" } .action{ range $chapters } .action{ if eq $currentChapter $d } .action{ $title = .Content } .action{ end } .action{ $currentChapter = add $currentChapter 1 } .action{ end } .action{ if ne $title "" } .action{ $title } .action{ else } 无 .action{ end } .action{ end }