Markdown is a text-based markup language created by John Groover in 2004, easy to write and read, and can be converted into HTML.
- simple
- It can be written without a separate tool.
- It can be converted into various forms.
- Because it is stored in text, it is easy to store due to its small capacity.
- Since it is a text file, the change history can be managed using a version management system.
- There are various programs and platforms to support
public class BootSpringBootApplication {
public static void main(String[] args) {
System.out.println("Hello, Honeymon");
}
}