We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
因为空白字符不可见,用文字描述
{{{<java> <4个空格>class A{ <4个空格><4个空格>String name; <4个空格><1个tab>Integer id; <4个空格>} }}}
上面的这段代码生成html的时候是下面这个样子
class A{ String name; Integer id; }
虽然输入的时候在文件中看起来缩进是一样的,但是由于缩进是Tab空格混用, 造成了生成的文档中代码缩进不一致的情况
The text was updated successfully, but these errors were encountered:
恩,查查去
Sorry, something went wrong.
看来 zDoc 输出 code 段的时候,应该把行首的 Tab 变成 4 个空格 ...
No branches or pull requests
因为空白字符不可见,用文字描述
上面的这段代码生成html的时候是下面这个样子
虽然输入的时候在文件中看起来缩进是一样的,但是由于缩进是Tab空格混用,
造成了生成的文档中代码缩进不一致的情况
The text was updated successfully, but these errors were encountered: