Skip to content

Commit d773cd1

Browse files
committed
Style minification
1 parent 3a21fba commit d773cd1

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Clipboard snippet code converter for http://habr.com.
44
Transforms code from usual html IntelliJ IDEA format into special _habr.com_ format.
55

66
**Usage:**
7-
* Single run mode
7+
* *Single execution mode*
88
* Select code region in IntelliJ IDEA and press Ctrl-C (Copy)
99
* Run `java -jar code-converter.jar`
1010
* Goto habr.com page editor and press Ctrl-V (Paste)
1111

12-
* Daemon mode
12+
* *Daemon mode*
1313
* Run `java -jar code-converter.jar daemon`
1414
* Select code region in IntelliJ IDEA and press Ctrl-C (Copy)
1515
* Goto habr.com page editor and press Ctrl-V (Paste)
1616
* Select code region in IntelliJ IDEA and press Ctrl-C (Copy)
17-
* Goto habr.com page editor and press Ctrl-V (Paste)~~~~
18-
...
17+
* Goto habr.com page editor and press Ctrl-V (Paste)
18+
* etc

src/main/kotlin/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private fun String.popupBr() =
7575
.replace(uselessFont, "$1")
7676

7777
private fun String.replaceTags() =
78-
replace("<br>", "\n")
78+
replace("<br>", "\n")
7979
.replace("&#32;", "&nbsp;")
8080

8181
private fun String.styledWith(style: String) =

0 commit comments

Comments
 (0)