iceshrimp-legacy/src/client/app/common/views/components/formula-core.vue
Aya Morisawa 79d2374d8e
Add multiline math syntax
Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
2019-01-25 23:08:06 +09:00

34 lines
572 B
Vue

<template>
<div v-if="block" v-html="compiledFormula"></div>
<span v-else v-html="compiledFormula"></span>
</template>
<script lang="ts">
import Vue from 'vue';
import * as katex from 'katex';
export default Vue.extend({
props: {
formula: {
type: String,
required: true
},
block: {
type: Boolean,
required: true
}
},
computed: {
compiledFormula(): any {
return katex.renderToString(this.formula, {
throwOnError: false
} as any);
}
}
});
</script>
<style>
@import "../../../../../../node_modules/katex/dist/katex.min.css";
</style>