Score:0

How can I convert my mmarkdown file in different style?

ph flag

Now heading 2 of my markdown file shown like this

Heading2
---

So, how can I convert it to ## Heading2

Also, the code block now is


    int gAll = 12;
    int main (int argc, char const *agc[]){
        printf("in %s gAll=%d\n", __func__, gAll);
        f();
        printf("agn %s gAll=%d\n", __func__, gAll);
        return 0;
    }
    int f(void){
        printf("in %s gAll=%d\n", __func__, gAll);
        gAll += 2;
        printf("agn %s gAll=%d\n", __func__, gAll);
        return gAll;
    }

how can I use ``` to replace the and four ?

I have tried pandoc, it can only work on heading and will let the table into a messy format.

N0rbert avatar
zw flag
"I have tried pandoc" is very vague. With which options you have tried it? Have you tried `pandoc --from markdown --to markdown_phpextra` or what?
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.