a3a4611e0916d2448949f5cb96cc69031d447672
[sixth.git] / src / main / java / eu / svjatoslav / sixth / core / document / content / TextBlock.java
1 package eu.svjatoslav.sixth.core.document.content;
2
3 import eu.svjatoslav.sixth.core.document.text.FormattedText;
4
5 public class TextBlock implements Content {
6     private final FormattedText text;
7
8     public TextBlock (String contentInOrgMarkup){
9         text = FormattedText.fromOrg(contentInOrgMarkup);
10     }
11
12     @Override
13     public void toMD(StringBuilder sb, int indent) {
14         sb.append(text.toMD(indent) + "\n");
15     }
16 }