引用`>`中的代码块中的%%影响预览与源码模式的渲染

ps: 一下操作都在沙盒中

source view preview view


  >```c
  >%%
  >```
  
  
  
  The if statement is called a *branching statement* or *selection statement* because it provides a junction where the program has to select which of two paths to follow. The general form is this:

image

理想情况:

实际上:

这个引用>中的代码块中的%%把下面所有文本(source view preview view)都渲染成了comment

解决方案?

调整一下位置,使用行内代码,在预览模式下只有颜色差别,在阅读模式下会被分成三块,


>```c
>代码
>```
>`%%`
>```c
>代码
>```
  
  
  The if statement is called a *branching statement* or *selection statement* because it provides a junction where the program has to select which of two paths to follow. The general form is this:

ps: 中英论坛上浅浅搜了一下没找到

PSS:已有临时解决方案

  >```c
  >%%
  >```
  >%%


似乎并不行,看完全文了
阅读模式下显示没有问题的,但是
浏览模式下渲染出了问题

变通办法,左:编辑模式;右:阅读模式:

>```c
>%%
>```
>%%

The if statement is called a *branching statement* or *selection statement* because it provides a junction where the program has to select which of two paths to follow. The general form is this:

如果出现了你反映的情况就加上 >%%,没出现就不加,因为有时代码里面有成双对的 %% 就不会有这个问题了。不管代码里有多少 %,最多只加两个 %。

代码块放在列表里、放在引用里现在显示得都不太好。

谢谢

问题解决了