2021-08-08
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url = uri("https://repository.elex-project.com/repository/maven")
|
setUrl("https://repository.elex-project.com/repository/maven")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -72,9 +72,7 @@ public class MarkdownParser {
|
|||||||
PARSER = Parser.builder(options).build();
|
PARSER = Parser.builder(options).build();
|
||||||
RENDERER = HtmlRenderer.builder(options).build();
|
RENDERER = HtmlRenderer.builder(options).build();
|
||||||
|
|
||||||
YAML_VISITOR = new AbstractYamlFrontMatterVisitor() {
|
YAML_VISITOR = new AbstractYamlFrontMatterVisitor();
|
||||||
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public MarkdownParser(final String md) {
|
public MarkdownParser(final String md) {
|
||||||
|
|||||||
@@ -5,8 +5,14 @@ order: 1
|
|||||||
|
|
||||||
# Markdown
|
# Markdown
|
||||||
|
|
||||||
This is a sample document.
|
This is a **sample** document.
|
||||||
|
|
||||||
* First
|
* First
|
||||||
* Second
|
* Second
|
||||||
* Third
|
* Third
|
||||||
|
|
||||||
|
```java
|
||||||
|
public static void main(String... agrs){
|
||||||
|
|
||||||
|
}
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user