Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/Services/Page.vala
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,11 @@ public class ENotes.PageTable : DatabaseTable {

private bool bold_state;
private bool italics_state;
private bool strikethrough_state;
private string convert (string raw_content) {
bold_state = true;
italics_state = true;
strikethrough_state = true;

if (raw_content == null || raw_content == "") return "";

Expand All @@ -283,10 +285,26 @@ public class ENotes.PageTable : DatabaseTable {
line = replace (line, "**", "<b>", "</b>", ref bold_state);
}

if (line.contains ("__")) {
line = replace (line, "__", "<b>", "</b>", ref bold_state);
}

if (line.contains ("*")) {
line = replace (line, "*", "<i>", "</i>", ref italics_state);
}

if (line.contains ("_")) {
line = replace (line, "_", "<i>", "</i>", ref italics_state);
}

if (line.contains ("~~~")) {
line = replace (line, "~~~", "<s>", "</s>", ref strikethrough_state);
}

if (line.contains ("~~")) {
line = replace (line, "~~", "<s>", "</s>", ref strikethrough_state);
}

return line;
}

Expand Down