doocs/md

复制到公众号的代码出现缩进异常、及缺少空格的问题

main-studio opened this issue · 6 comments

在本地编辑器(Typora)和网页编辑器([https://doocs.github.io/md/)显示都是正常的,从网页编辑器复制公众号出现上述问题。

使用浏览器:Chrome

公众号显示:

公众号

网页编辑器显示:

网页编辑器

麻烦提供一下出现异常的文本内容,我这边未能复现成功。

【实例】

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>

void set_seed(void);
char generate_random_character(void);
void generate_random_string(char* receive_string,unsigned int string_length);

int main(void)
{
    unsigned int password_length = 4;
    char password_buffer[password_length + 1]; // +1 用来存储字符串结尾的转译字符 '\0'

    set_seed();	// 设置 rand() 函数的种子
    generate_random_string(password_buffer,password_length); // 生成随机字符串

    printf("%s",password_buffer);

    return 0;
}

复现成功,但是还没法给出解释,需要等待排查。

好的,麻烦你啦😄

@main-studio 应该修复了,可以再试试看

有问题再反馈