فارمیٹنگ صاف کریں

منتخب حد سے متن کی فارمیٹنگ ایک ساتھ ہٹائیں۔ رجسٹر شدہ طے شدہ مارکس، جیسے بولڈ، رنگ اور ٹائپ فیس، نیز پیراگراف کے اوصاف، جیسے سرخی، سیدھ اور ڈراپ کیپ، شامل ہوتے ہیں۔ Esc کو تیزی سے دو بار دبانے سے بھی یہی عمل ہوتا ہے۔

یہ فہرست، جدول، اقتباس یا تصویر جیسی دستاویز کی ساخت کو سادہ متن میں نہیں بدلتا۔ تصاویر اور ویڈیوز کی بیرونی سیدھ، اور اپ لوڈ سے بننے والے اٹیچمنٹ لنکس، جیسے کے ویسے رہتے ہیں۔

پَر
طے شدہ فونٹاونچائی
HTMLایڈیٹر لوڈ ہو رہا ہے…
JSONnabi-treeایڈیٹر لوڈ ہو رہا ہے…
تنصیب
npm install nabi-note
کوڈ
import {
  createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
  mountHints, watchSettle, boldWing, italicWing, underlineWing,
  strikeWing, fontSizeWing, linkWing, imageWing, uploadWing,
  clearFormatWing, mountUpload, mountUploadView, mountViewTools,
} from 'nabi-note'

const selected = [
  boldWing,
  italicWing,
  underlineWing,
  strikeWing,
  fontSizeWing,
  linkWing,
  imageWing,
  uploadWing,
  clearFormatWing,
]
const { nabi, registry } = createNabiWith(selected)

const root = document.querySelector('.nabi')!
const content = document.querySelector('.nabi-content')!

const view = mountUploadView({ nabi, surface: content })
const upload = mountUpload({
  nabi, root: content,
  // your upload goes here — report progress with task.onProgress(0–100)
  uploader: async (task) => ({ uri: 'https://cdn.example/uploaded' }),
  extensions: ['png', 'jpg', 'pdf'], maxFileSize: 10 * 1024 * 1024,
  onStart: (tasks) => view.start(tasks),
  onProgress: (id, percent) => view.progress(id, percent),
  onSettle: () => view.settle(),
  onDone: () => view.done(),
})

// The locale also sets the direction — Arabic and Urdu run right to left
mountSurface({ nabi, registry, root: content, locale: 'ur', fileSink: upload.take })

const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'ur' }
const toolbar = mountToolbar({ ...shared, root: document.querySelector('#toolbar')!, onFiles: upload.take })
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('b')
  .use('i')
  .use('clearFormat')
  .build()

جن فارمیٹنگ ونگز کو صاف کرنا ہو انہیں بھی منتخب کرنا ضروری ہے، ورنہ ان کی فارمیٹنگ ہٹائی نہیں جا سکتی۔