在markdown中,如何使用html代码将多行的代码块插入到一行文字中
<pre>
这是一行文字,其中包含了一段多行的代码块:<code style="display: inline-block;white-space: pre;margin: 0;">int main() {
printf("Hello, world!");
return 0;
</code>文字继续向下。
</pre>
效果如下:
这是一行文字,其中包含了一段多行的代码块:int main() {
printf("Hello, world!");
return 0;
文字继续向下。
用于复制:
<pre>
<code style="display: inline-block;white-space: pre;margin: 0;">
</code>
</pre>