-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59fb9c4
commit c68b83c
Showing
17 changed files
with
1,649 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
src/main/java/org/support/project/knowledge/vo/MarkDown.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package org.support.project.knowledge.vo; | ||
|
||
public class MarkDown { | ||
|
||
private String markdown; | ||
|
||
private String html; | ||
|
||
private boolean parsed = false; | ||
|
||
/** | ||
* @return the markdown | ||
*/ | ||
public String getMarkdown() { | ||
return markdown; | ||
} | ||
|
||
/** | ||
* @param markdown the markdown to set | ||
*/ | ||
public void setMarkdown(String markdown) { | ||
this.markdown = markdown; | ||
} | ||
|
||
/** | ||
* @return the html | ||
*/ | ||
public String getHtml() { | ||
return html; | ||
} | ||
|
||
/** | ||
* @param html the html to set | ||
*/ | ||
public void setHtml(String html) { | ||
this.html = html; | ||
} | ||
|
||
/** | ||
* @return the parsed | ||
*/ | ||
public boolean isParsed() { | ||
return parsed; | ||
} | ||
|
||
/** | ||
* @param parsed the parsed to set | ||
*/ | ||
public void setParsed(boolean parsed) { | ||
this.parsed = parsed; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.