புள்ளிப் பட்டியல்

பல உருப்படிகளை வரிசையின்றிப் பட்டியலிடும் பட்டியல் இது. வெற்றுப் பத்தியில் - க்குப் பிறகு 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: 'ta' })

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