Skip to content

Commit

Permalink
Revert "Update README.md"
Browse files Browse the repository at this point in the history
This reverts commit f8f6b00.
  • Loading branch information
Yana-Koroliuk committed Feb 29, 2024
1 parent f8f6b00 commit f39ee4e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 65 deletions.
64 changes: 0 additions & 64 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,65 +1 @@
# Methodologies-lab-1

Це текст у форматі Markdown. В межах нашої роботи ми розглядаємо дуже урізану підмножину цієї мови розмітки. Текст можна розділяти на абзаци, лишаючи між абзацами 1 (один) порожній рядок.

Ми можемо виділяти текст **жирним**, робити його _курсивним_ або `фіксованої ширини`. Також є можливість зберігати фрагменти преформатованого тексту:
```
Цей текст є преформатований.
Це означає, що він відобразиться, як є, і жодне інше форматування, як от **жирний** чи _курсив_ на нього не
впливає. А ще тут усі пробіли, відступи та перенесення рядка зберігаються як є
```

----------------------
**bold text**

_italic fragment_

`monospaced`

```
This text is **preformatted**
And can have multiple paragraphs
```

Paragraph1. Lorem Ipsum Dolor Sit Amet.
This is still paragraph 1.

And after a blank line this is paragraph 2.

----------------------
**`_this is invalid_`**

_ - а це нижнє підкреслення

_’ - теж ок

snake_case
_italic case_

_кінця-краю немає

**bold** <b>bold</b>

_italic_ <i>italic</i>

`monospaced` <tt>monospaced</tt>

```
Preformatted text **He He**
```

<pre>
Preformatted text **He He**
</pre>


Paragraph1. Lorem Ipsum Dolor Sit Amet.
This is still paragraph 1.

And after a blank line this is paragraph 2.


<p>Paragraph1. Lorem Ipsum Dolor Sit Amet.
This is still paragraph 1.</p>
<p>And after a blank line this is paragraph 2.</p>
1 change: 0 additions & 1 deletion src/main/java/com/koroliuk/app/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public String markdownToHtml() throws Exception {
html = html.replace("PREBLOCK" + i, "<pre>" + preBlocks.get(i) + "</pre>");
}
html = html.replaceAll("<p><pre>(.+?)</pre></p>", "<pre>$1</pre>");
System.out.println(checkCopy);
checkForUnbalancedMarkers(checkCopy);
return html;
}
Expand Down

0 comments on commit f39ee4e

Please sign in to comment.