संरेखन
सध्याचा paragraph किंवा निवडलेल्या range मधील paragraphs डावीकडे, मध्यभागी किंवा उजवीकडे align करा. images, videos आणि tables सारख्या paragraph मधील objects त्यांना wrap करणाऱ्या paragraph द्वारे align होतात.
alignment हे text formatting म्हणून नव्हे तर paragraph attribute म्हणून साठवले जाते. indentation तेथे अर्थपूर्ण असल्याने code blocks संरेखनातून वगळले जातात.
विंग्ज
मूलभूत अक्षररूपअंतर
HTMLसंपादक लोड होत आहे…
JSONnabi-treeसंपादक लोड होत आहे…
स्थापित करा
npm install nabi-noteकोड
import {
createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
mountHints, watchSettle, alignWing, dropCapWing, mountViewTools,
} from 'nabi-note'
const selected = [
alignWing,
dropCapWing,
]
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('align').build()