हायलाइट

निवडलेल्या मजकुरामागे परवानगी असलेला highlight रंग लावा. साठवलेला data फक्त परवानगीचे रंगनाव ठेवतो, मनमाना CSS रंगमूल्य नाही; त्यामुळे document data आणि दृश्य शैली वेगळी राहते.

विंग्ज
मूलभूत अक्षररूपअंतर
HTMLसंपादक लोड होत आहे…
JSONnabi-treeसंपादक लोड होत आहे…
स्थापित करा
npm install nabi-note
कोड
import {
  createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
  mountHints, watchSettle, textColorWing, highlightWing, linkWing,
  mountViewTools,
} from 'nabi-note'

const selected = [
  textColorWing,
  highlightWing,
  linkWing,
]
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('hl', {
  values: ['yellow', 'green', 'cyan'],
}).build()

values वगळल्यास yellow, green, cyan, pink, purple आणि orange हे default palette असते. सूची अरुंद केल्यास जुने document लोड करतानादेखील नोंद नसलेले रंग ठेवले जात नाहीत.

CSS शैली

document फक्त रंगनाव साठवते. CSS variables ने editor आणि प्रकाशित दृश्याचे रंग बदला.

css
.nabi-content { --nabi-hl-yellow: #fff0a6; }

अनेक रंग एकत्र बदलल्याने document मधील रंगनावे तशीच ठेवून फक्त उत्पादनाचा shade समायोजित करता येतो.

css
.article-body {
  --nabi-hl-yellow: #fff0a6;
  --nabi-hl-green: #c8f0d8;
  --nabi-hl-pink: #ffd6e5;
}