ตระกูลแบบอักษร

ใช้ตระกูลแบบอักษรกับข้อความที่เลือก หากเลือกเป็นช่วง จะเปลี่ยนเฉพาะช่วงนั้น หากมีเพียงเคอร์เซอร์ จะใช้กับข้อความในย่อหน้าปัจจุบัน ไฟล์แบบอักษรจริงและค่า font-family จะถูกกำหนดโดย CSS ของบริการ

ตระกูลเริ่มต้นคือ sans, serif, mono และ cursive โดยเฉพาะบริการที่มีภาษาไทยหรือเนื้อหาหลายภาษา ควรกำหนดอย่างชัดเจนว่าแต่ละตระกูลจะใช้แบบอักษรใด

ปีก
แบบอักษรหลักระยะเยื้อง
HTMLกำลังโหลดโปรแกรมแก้ไข…
JSONnabi-treeกำลังโหลดโปรแกรมแก้ไข…
ติดตั้ง
npm install nabi-note
โค้ด
import {
  createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
  mountHints, watchSettle, typefaceWing, fontSizeWing, dropCapWing,
  mountViewTools,
} from 'nabi-note'

const selected = [
  typefaceWing,
  fontSizeWing,
  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: 'th' })

const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'th' }
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('tf', {
  values: ['sans', 'serif', 'mono'],
}).build()

หากละ values ไว้ จะใช้ตระกูลเริ่มต้นทั้งหมด ในเอกสารจะอนุญาตเฉพาะค่าที่อยู่ใน values

สไตล์ CSS

เอกสารจะเก็บเพียงชื่อตระกูล ส่วน CSS เป็นผู้เลือกไฟล์แบบอักษร ให้เปลี่ยนตัวแปรในคอนเทนเนอร์เดียวกันทั้งสำหรับตัวแก้ไขและมุมมองที่เผยแพร่

css
.nabi-content {
  --nabi-font-serif: "Noto Serif KR", serif;
  --nabi-font-mono: "JetBrains Mono", monospace;
}

หากใช้เว็บฟอนต์ ต้องโหลดไฟล์แบบอักษรนั้นก่อน cursive มักรองรับอักษรไทยไม่ดี จึงควรให้ใช้งานหลังจากกำหนดแบบอักษรจริงที่บริการของคุณจะใช้แล้ว