type
Post
status
Published
date
Nov 5, 2021
slug
example-1
summary
这是示例的文章摘要,摘要内容可被用做搜索,预览。文章列表默认展示概要;若要在列表直接展示文章内容,可在blog.config.js中配置。
tags
思考
建站
category
学习思考
icon
password
Property
Aug 3, 2022 02:59 AM
一、模板使用说明
Notion页面中,每一篇文章都有以下属性🤔:
属性 | 必填 | 说明 | 备注 |
title | 是 | 文章标题 | |
status | 是 | 发布状态 | (仅当状态为 Published 时会被 展示) |
type | 是 | 页面类型 (博文 Post / 单页(Page ) | 单页不会在博文列表显示 。 |
summary | 否 | 内容摘要 | 搜索和简略显示会用到 |
date | 否 | 发布日期 | 在V3.3.9之前的版本此项为必填。 |
category | 否 | 文章分类 | 可以自定义 |
tags | 否 | 文章标签 | 可多个,建议不要太多 |
slug | 否 | 文章短路径 | (每篇文章唯一,请勿 重复) |
icon | 否 | 菜单栏图标(仅当 Page 类型有效) | 可以参考:图标库地址 |
password | 否 | 文章加锁 | 需要输入密码才允许访问 |
二、示例段落
生活的意义并不是与他人争高下,而在于享受努力实现目标的过程,结果只是对自己行动的嘉奖。
1.将进酒
君不见黄河之水天上来,奔流到海不复回。
君不见高堂明镜悲白发,朝如青丝暮成雪。
人生得意须尽欢,莫使金樽空对月。
天生我材必有用,千金散尽还复来。
烹羊宰牛且为乐,会须一饮三百杯。
岑夫子,丹丘生,将进酒,杯莫停。
与君歌一曲,请君为我倾耳听。
钟鼓馔玉不足贵,但愿长醉不愿醒。
古来圣贤皆寂寞,惟有饮者留其名。
陈王昔时宴平乐,斗酒十千恣欢谑。
主人何为言少钱,径须沽取对君酌。
五花马、千金裘,呼儿将出换美酒,与尔同销万古愁。
2.代码
// C++ #include <iostream> using namespace std; // main() 是程序开始执行的地方 int main() { cout << "Hello World"; // 输出 Hello World return 0; }
/* C# */ using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { Console.WriteLine("Hello World"); Console.ReadKey(); } } }
# Bash 安装zsh $ sudo apt install zsh # 配置ohmyzsh $ sh -c "$(curl -fsSL <https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh>)" # 配置ohmyzsh插件 # zsh-autosuggestions $ git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions # zsh-syntax-highlighting $ git clone <https://github.com/zsh-users/zsh-syntax-highlighting.git> ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting // 启用插件 $ vim .zshrc plugins=(git z zsh-autosuggestions zsh-syntax-highlighting)
/** * Java代码 **/ @Test public void test11() { long start = System.currentTimeMillis(); int a = 0; for(int i=0;i<1000000000;i++){ try { a++; }catch (Exception e){ e.printStackTrace(); } } long useTime = System.currentTimeMillis()-start; System.out.println("useTime:"+useTime); }
#!/usr/bin/python3 import json # Python 字典类型转换为 JSON 对象 data = { 'no' : 1, 'name' : 'hello', 'url' : 'http://tangly1024.com' } json_str = json.dumps(data) print ("Python 原始数据:", repr(data)) print ("JSON 对象:", json_str)
折叠的代码
html { background-color: red; }
3.公式
4.数据
5.代办
洗衣
做饭
6.折叠列表
点击展开
点击展开
点击展开
内容可以多级嵌套
7.引用✍️
书中自有黄金屋,书中自有颜如玉
8. 链接引用
外部引用
内部引用,两种方式:
- 加锁文章 - 密码123456 ,这篇文章在站点中会被替换成博文内部的链接。
例如
https://www.notion.so/tanghh/4d7cafcd57a4425590c5821a6f40dfe8
会被替换为 /article/4d7cafcd57a4425590c5821a6f40dfe8
在notion中输入
@
符号后输入文章名即可搜索关联 。(注意:仅限用此形式,若以书签形式引用notion页面,将被视为外部链接)- 在博客站点中复制你的文章链接,再粘贴到notion博客中
9. 照片集
10. 内嵌网页
三. 多级目录
heading标题在博客中自动转为目录
二级目录3
四.模板说明
若要部署你的NotionNext项目,请复制该模板,并按照模板格式创建文章:
五. 评论插件
系统支持 以下六种插件,并且可以同时开启,点击评论区的Tab来体验。
- Waline
- Giscus
- Valine
- GitTalk
- Utterance
- Cusdis
- Author:tangly1024
- URL:https://tangly1024.com/article/example-1
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!