तपासणी सूची
पूर्णत्वाची स्थिती असलेली ही सूची आहे. रिकाम्या परिच्छेदात [ ] किंवा [x] नंतर Space दाबा किंवा साधनपट्टीतून तयार करा, आणि तपासणी चौकटीवर क्लिक करून स्थिती बदला.
तपासणीची स्थिती घटकाच्या गुणधर्मासह दस्तऐवजातच साठवली जाते. घटक विभाजित केल्यावर ही स्थिती रिकाम्या आधीच्या घटकाबरोबर न राहता मजकूर असलेल्या घटकाबरोबर जाते; त्यामुळे पूर्ण केलेले काम दोन भागांत विभागले तरी स्थिती बदलत नाही.
विंग्ज
मूलभूत अक्षररूपअंतर
HTMLसंपादक लोड होत आहे…
JSONnabi-treeसंपादक लोड होत आहे…
स्थापित करा
npm install nabi-noteकोड
import {
createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
mountHints, watchSettle, orderedListWing, taskListWing, tableWings,
mountViewTools,
} from 'nabi-note'
const selected = [
orderedListWing,
taskListWing,
...tableWings,
]
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: 'mr' })
const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'mr' }
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('tl').build()