Skip to content
Snippets Groups Projects
Unverified Commit c9ec0870 authored by Masaya Suzuki's avatar Masaya Suzuki Committed by GitHub
Browse files

fix: インラインコードを折り返して表示する (#9801)

parent 6a3039f7
No related branches found
No related tags found
No related merge requests found
<!-- eslint-disable vue/no-v-html -->
<template>
<code v-if="inline" :class="`language-${prismLang}`" v-html="html"></code>
<code v-if="inline" :class="`language-${prismLang}`" style="overflow-wrap: anywhere;" v-html="html"></code>
<pre v-else :class="`language-${prismLang}`"><code :class="`language-${prismLang}`" v-html="html"></code></pre>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment