npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yayure/ckeditor5-mathlive

v41.4.0

Published

Mathlive feature for CKEditor 5.

Downloads

363

Readme

English | 简体中文

CKEditor 5 公式编辑器功能 · npm version

ckeditor5-mathlive是一款基于mathlive为CKEditor 5设计的公式编辑器。你可以对基于LaTeX语法的公式进行插入、编辑和查看。同时该插件默认支持高达800种LaTeX语法

目录

功能

  • LaTeX语法支持
  • 对公式的可视化编辑
  • LaTeX文本的解析配置
  • LaTeX公式的文本输出配置
  • 自定义可视化公式编辑器面板

演示

Classic editor with CDN

图例

图例 1

安装和使用

npm

在你的项目或CKEditor 5中安装和使用基础依赖mathlive :

npm install --save mathlive
import 'mathlive/dist/mathlive-static.css';
import 'mathlive';

在你的项目或CKEditor 5中安装和使用该插件 :

npm install --save @yayure/ckeditor5-mathlive
import { Mathlive, MathlivePanelview } from '@yayure/ckeditor5-mathlive';

ClassicEditor
    .create( document.querySelector( '#editor' ), {
        plugins: [ Mathlive, /** ... 其他插件 */ ],
        toolbar: {
            items: [ 'mathlive', /** ... 其他工具栏按钮 */ ]
        },
        mathlive: {
            renderMathPanel( element ) {
                let panelView = new MathlivePanelview();
                panelView.mount( element );
                return () => {
                    panelView.destroy();
                    panelView = null;
                }
            }
        },
        // ... 其他配置项
    } )

CDN

添加基础依赖和该插件 :

<head>
    <!-- ... 其他CKEditor资源 -->

    <link rel="stylesheet" href="https://unpkg.com/mathlive/dist/mathlive-static.css" />
    <script defer src="https://unpkg.com/mathlive"></script>
    <script src="https://unpkg.com/@yayure/ckeditor5-mathlive/build/mathlive.js"></script>
</head>

使用该插件 :

CKEditor5.editorClassic.ClassicEditor
    .create( document.querySelector( '#editor' ), {
        plugins: [ CKEditor5.mathlive.Mathlive, /** ... 其他插件 */ ],
        toolbar: [ 'mathlive', /** ... 其他工具栏按钮 */ ],
        mathlive: {
            renderMathPanel( element ) {
                let panelView = new CKEditor5.mathlive.MathlivePanelview();
                panelView.mount( element );
                return () => {
                    panelView.destroy();
                    panelView = null;
                }
            }
        },
        // ... 其他配置项
    } )

配置

插件默认配置

{
    // ...
    mathlive: {
        /**
         * 挂载公式面板。
         */
        renderMathPanel: undefined,
        /**
         * 面板关闭时是否销毁。
         */
        mathPanelDestroyOnClose: false,
        /**
         * 选中CKEditor编辑器中的公式时是否打开面板。
         */
        openPanelWhenEquationSelected: false,
        /**
         * 将含该类名的元素转换为可视化公式展示。
         * 如: <span class="tex2jax_process">\( \sqrt{\frac{a}{b}} \)</span>
         */
        processClass: 'tex2jax_process',
        /**
         * 将属性type为该值的script元素转换为可视化公式展示。
         * 如: <script type="math/tex">\sqrt{\frac{a}{b}}</script>
         */
        processScriptType: 'math/tex',
        /**
         * 定义可视化公式在CKEditor中输出的html数据。
         * 如: { type: 'script', attributes: { type: 'math/tex' } } => <script type="math/tex">\sqrt{\frac{a}{b}}</script>
         * { type: 'span', attributes: { class: 'math-tex' } } => <span class="math-tex">\sqrt{\frac{a}{b}}</span>
         */
        output: {
            type: 'script',
            attributes: {
               type: 'math/tex'
            }
        }
    }
    // ...
}

贡献和翻译

欢迎贡献、改进和修复错误。开发文档详见DEVELOPMENT.md

您可以在以下文件夹和文件进行翻译。

├─ lang
├─ ├─ translations
│  └─ contexts.json