引用
将引用文字或独立语境跨多个段落组合起来。在空段落中输入 > 后按 Space,或从工具栏把选中的段落切换为引用。
引用可以包含普通段落,也可以包含列表、图片等块。对同一范围再次切换会解除引用,恢复为外部段落。
翅膀
默认字体高度
HTML正在加载编辑器…
JSONnabi-tree正在加载编辑器…
安装
npm install nabi-note代码
import {
createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
mountHints, watchSettle, quoteWing, detailsWing, dividerWing,
mountViewTools,
} from 'nabi-note'
const selected = [
quoteWing,
detailsWing,
dividerWing,
]
const { nabi, registry } = createNabiWith(selected)
const root = document.querySelector('.nabi')!
const content = document.querySelector('.nabi-content')!
// The locale also sets the direction — Arabic and Urdu run right to left
mountSurface({ nabi, registry, root: content, locale: 'zh' })
const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'zh' }
const toolbar = mountToolbar({ ...shared, root: document.querySelector('#toolbar')! })
const context = mountContextToolbar({ ...shared, root: document.querySelector('#context')! })
mountHints({ toolbar, context, root, surface: content })
// The preview and fullscreen buttons — they stand their own box at the end of the row
mountViewTools({ ...shared, root, container: document.querySelector('#toolbar')! })
// on every change — hook up your own code here
// nabi.onChange(() => user_callback(nabi.getHtml()))ts
const selected = wings().use('quote').build()CSS 样式
通过 .nabi-content blockquote 修改边框和间距来设置引用样式。
css
.article-body blockquote {
margin-inline: 0;
padding: .25rem 1rem;
border-inline-start: 4px solid var(--nabi-accent);
color: var(--nabi-muted);
background: color-mix(in srgb, var(--nabi-soft) 72%, transparent);
}保留 blockquote 内部的段落结构,只改变外部间距、边框、颜色等表现。