Skip to content

Markdown playground

Ed Bacher edited this page Oct 18, 2018 · 21 revisions

>>>>> gd2md-html alert: ERRORs: 0; WARNINGs: 1; ALERTS: 0.

  • See top comment block for details on ERRORs and WARNINGs.
  • In the converted Markdown or HTML, search for inline alerts that start with >>>>> gd2md-html alert: for specific instances that need correction.

Links to alert messages:

>>>>> PLEASE check and correct alert issues and delete this message and the inline alerts.


gd2md-html demo/test doc

Standard H1

some text

H1 with some explicit bold

some more text

Code blocks

A code block (note that by default, gd2md-html does not add language descriptors to code blocks.

package main

import "fmt"

func main() {
	fmt.Println("Hello, 世界")
}

A single-cell table also becomes a code block:

#include<stdio.h>
main()
{
    printf("Hello World");
}
Clone this wiki locally