uid | title | tags | description | author | type | draft | editable | modified |
---|---|---|---|---|---|---|---|---|
20230328174304 |
主页 |
awesome |
true |
false |
20230328174304 |
table without id
file.link as "文件名",
author,
type as "类型",
tags as "标签",
uid,
modified as "修改时间"
from "" and !"Config"
sort modified desc
limit 15
table without id
file.link as "文件名",
author,
type as "类型",
tags as "标签",
uid,
modified as "修改时间"
from "" and !"Config"
where modified = null
limit 15
const pages = dv.pages()
const pagesId = pages.map((page)=> page.uid)
function findDuplicates(arr) {
const count = {};
const duplicates = [];
for (let i = 0; i < arr.length; i++) {
if (count[arr[i]] === undefined) {
count[arr[i]] = 1;
} else if (count[arr[i]] === 1) {
duplicates.push(arr[i]);
count[arr[i]]++;
}
}
return duplicates;
}
const result = findDuplicates(pagesId)
if(result.length > 0){
dv.list(result)
}else{
dv.paragraph('==没有结果就是最好的结果==')
}
项目是一个开源项目,旨在总结和归纳知识管理相关知识和用法技巧。欢迎参与贡献文档,提出建议和需求,使得该项目更好。彼时您将获得除了登上此 Github 项目的贡献榜,和相同志趣的伙伴一起探讨知识管理,还将获得由 Pkmer 组织提供的相应的奖励。 测试
- aaa
- aaa
- 2222
- 4444
- 333
- 5555
- 55555
- 4444
- 2333
- 2222
- aaa
- 2222
- 22222
- 33333
- 222
- 2222
- 无序列表
- 无序列表
- 222
- 无序列表 2222
- 有序列表
- 1.1 无序列表
- 1.2 无序列表
- 有序列表
- 无序列表 1
- 无序列表 2
- 无序列表套有序
- 有序列表
- 有序列表套无序
- 无序列表
- 无序列表 2
- 第三点
- 无序列表第二节
Note
-
aaa
-
测试
- 测试
- 测试
- 测
italic
bolded
bolded italic
In-line code (also used as emphasis)
==Highlighting==
==italic highlighting==
==Sign works in reverse==
==Bold highlighting==
==bold italic highlighting==
==Highlighting in-line code
==
三更灯火五更鸡,==正是男儿读书时==。
==黑发不知勤学早==,白首方悔读书迟。
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
// my-test-file.js
console.log('Hello World!');
npm install
function thisIsJavaScript() {
// 这整个代码块都会被作为 JavaScript 高亮
// 而且我们还可以给它添加 diff 标记!
- console.log('旧的不去')
+ console.log('新的不来')
}
function demo() {
// 这一行 (#2) 以及下一行被高亮显示
return '这是本代码段的第 3 行';
}
function demo() {
console.log('这是插入以及删除类型的标记');
// 返回语句使用默认标记类型
return true;
}
// 单个词组也能被高亮显示
function demo() {
return '甚至支持使用正则表达式';
}
![[pkmer.png|Figure 2. No, it is not an egg!|140]]
要在您的项目中配置 stylelint,您需要在项目根目录下创建一个名为 .stylelintrc
的文件。此文件可以包含您的项目的 stylelint 规则 1。要了解更多信息,请访问 https://stylelint.io/。
What you typed | What you got |
---|---|
==your words== | ==your words== |
*==your words==* | ==your words== |
==**your words**== | ==your words== |
==***your words***== | ==your words== |
**==your words==** | ==your words== |
***==your words==*** | ==your words== |
journey
title My working day
section Go to work
Make tea: 5: Me
Go upstairs: 3: Me
Do work: 1: Me, Cat
section Go home
Go downstairs: 5: Me
Sit down: 5: Me
Footnotes
-
stylelint 是一种用于检查 CSS 代码风格的工具。它可以帮助开发人员检查 CSS 代码是否符合特定的代码规范,并提供指导意见来改进代码质量。stylelint 可以通过命令行或插件集成到常用的文本编辑器中,以便在写代码时实时检查代码质量。 ↩