Skip to content

Commit

Permalink
fix: try to fix unified latex but no work
Browse files Browse the repository at this point in the history
  • Loading branch information
tefkah committed May 30, 2023
1 parent 29b7b4d commit 5336c78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Root, Node } from '@unified-latex/unified-latex-types/'
import { CompilerFunction, Plugin } from 'unified'

const unifiedLatexStringify: Plugin<void[], Root, string> = function unifiedLatexStringify() {
const compiler: CompilerFunction<Node, string> = (tree) => {
const compiler: CompilerFunction<Root, string> = (tree) => {
// Assume options.
return toString(tree)
}
Expand Down

0 comments on commit 5336c78

Please sign in to comment.