How to use react-mathquill - 3 common examples

To help you get started, we’ve selected a few react-mathquill examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github edtr-io / edtr-io / packages / plugins / text / src / plugins / katex / editor.tsx View on Github external
import {
  katexBlockNode,
  katexInlineNode,
  orderedListNode,
  unorderedListNode
} from '../../model'
import { Button } from '../../toolbar/button'
import { Dropdown, Option } from '../../toolbar/dropdown'
import { HoveringOverlay } from '../hovering-overlay'
import { InlineCheckbox } from '../inline-checkbox'
import { isList } from '../list'
import { Math } from './math-component'

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const MathQuill: React.ComponentType = canUseDOM
  ? require('react-mathquill').default
  : () => null

interface MathField {
  typedText(text: string): void

  latex(): string
}

const EditorWrapper = styled.div<{ inline: boolean }>(props => {
  return {
    whiteSpace: undefined,
    overflowWrap: undefined,
    ...(props.inline
      ? {
          display: 'inline-block'
        }
github JithinKS97 / dynamic-learning / imports / ui / components / workbook / MathQuill.jsx View on Github external
constructor() {
    super();
    addMathquillStyles();
    this.state = {
      latex: '\\frac{1}{\\sqrt{2}}\\cdot 2',
    };
  }
github edtr-io / edtr-io / packages / plugins / text / src / plugins / katex / index.tsx View on Github external
import * as React from 'react'
import { Editor } from 'slate'

import {
  NodeRendererProps,
  NodeEditorProps,
  TextPlugin,
  NodeControlsProps,
  trimSelection
} from '../..'
import { SlatePluginClosure } from '../../factory/types'
import { katexBlockNode, katexInlineNode } from '../../model'
import { DefaultEditorComponent } from './editor'

if (canUseDOM) {
  require('react-mathquill').addStyles()
}

export const isKatex = (editor: Editor) => {
  return (
    editor.value.blocks.some(block =>
      block ? block.type === katexBlockNode : false
    ) ||
    editor.value.inlines.some(inline =>
      inline ? inline.type === katexInlineNode : false
    )
  )
}
export const insertKatex = (editor: Editor) => {
  if (editor.value.selection.isExpanded) {
    trimSelection(editor)
    const selection = document.getSelection()

react-mathquill

React component wrapper for Mathquill

MIT
Latest version published 1 year ago

Package Health Score

48 / 100
Full package analysis

Popular react-mathquill functions

Similar packages