NABI NOTE
নথি

ক্রমসংখ্যার তালিকা

ক্রম গুরুত্বপূর্ণ আইটেমগুলোকে সংখ্যার তালিকায় বানান। খালি অনুচ্ছেদে 1.-এর মতো সংখ্যা ও দাঁড়ি লিখে Space চাপুন, অথবা নির্বাচিত অনুচ্ছেদ টুলবার থেকে বদলান।

দেখানো সংখ্যা আইটেমের অবস্থান থেকে হিসাব হয়; তাই আইটেম যোগ বা ভেতরে নিলেও স্বয়ংক্রিয়ভাবে চলতে থাকে। লেখা শুরুর সংখ্যা সংরক্ষণ করে ইচ্ছামতো সংখ্যা থেকে গণনার সুবিধা নেই।

ডানা
ডিফল্ট ফন্টউচ্চতা
HTMLসম্পাদক লোড হচ্ছে…
JSONnabi-treeসম্পাদক লোড হচ্ছে…
ইনস্টল
npm install nabi-note
কোড
import {
  createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
  mountHints, watchSettle, bulletListWing, orderedListWing,
  taskListWing, mountViewTools,
} from 'nabi-note'

const selected = [
  bulletListWing,
  orderedListWing,
  taskListWing,
]
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: 'bn' })

const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'bn' }
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('ol').build()