mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: Add missing docs
This commit is contained in:
parent
3e9716da63
commit
98b28097c4
4 changed files with 9 additions and 1 deletions
|
|
@ -22,6 +22,9 @@ import org.parboiled.support.Var;
|
|||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Implementation of Var to support parameter parsing
|
||||
*/
|
||||
public class ParamVar<K, V> extends Var<Map<K, V>> {
|
||||
|
||||
public ParamVar() {
|
||||
|
|
|
|||
|
|
@ -37,6 +37,9 @@ import java.net.URLConnection;
|
|||
import java.net.URLEncoder;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
||||
/**
|
||||
* Pegdown plugin for Websequence diagram
|
||||
*/
|
||||
public class PegdownWebSequencelPlugin extends Parser implements BlockPluginParser {
|
||||
|
||||
public PegdownWebSequencelPlugin() {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,9 @@ import java.io.UnsupportedEncodingException;
|
|||
import java.net.URLEncoder;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Pegdown plugin for YUML
|
||||
*/
|
||||
public class PegdownYumlPlugin extends Parser implements BlockPluginParser {
|
||||
|
||||
public PegdownYumlPlugin() {
|
||||
|
|
|
|||
|
|
@ -317,7 +317,6 @@ public class PegdownParserTest {
|
|||
.toString();
|
||||
|
||||
InterpreterResult result = md.interpret(input, null);
|
||||
assertEquals("", result.message());
|
||||
assertThat(result.message(), CoreMatchers.containsString("<img src=\"http://www.websequencediagrams.com/?png="));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue