बुलेट सूची
कई मदों को बिना क्रम के सूचीबद्ध करती है। खाली अनुच्छेद में - के बाद Space दबाएँ या टूलबार से बदलें। चुने हुए अनुच्छेदों को भी एक साथ सूची में बाँधा जा सकता है।
सूची के भीतर Tab एक स्तर अंदर करता है और Shift+Tab बाहर लाता है। Enter अगला मद बनाता है; खाली मद पर दोबारा Enter दबाने से सूची समाप्त होती है।
पंख
डिफ़ॉल्ट फ़ॉन्टऊँचाई
HTMLसंपादक लोड हो रहा है…
JSONnabi-treeसंपादक लोड हो रहा है…
इंस्टॉल
npm install nabi-noteकोड
import {
createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
mountHints, watchSettle, headingWing, bulletListWing, orderedListWing,
mountViewTools,
} from 'nabi-note'
const selected = [
headingWing,
bulletListWing,
orderedListWing,
]
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: 'hi' })
const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'hi' }
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('ul').build()