From 25ff5a9189e697ad52e2f0fcbcb05f69278555ba Mon Sep 17 00:00:00 2001 From: arcan1s Date: Thu, 29 May 2014 00:54:43 +0400 Subject: [PATCH] fix charset --- sources/readme/en.html | 1 + sources/readme/es.html | 1 + sources/readme/ru.html | 1 + sources/readme/uk.html | 1 + update_files.sh | 3 ++- 5 files changed, 6 insertions(+), 1 deletion(-) diff --git a/sources/readme/en.html b/sources/readme/en.html index d900fa7..987b353 100644 --- a/sources/readme/en.html +++ b/sources/readme/en.html @@ -1,3 +1,4 @@ +

pytextmonitor

Information

diff --git a/sources/readme/es.html b/sources/readme/es.html index b68fc33..4edc8db 100644 --- a/sources/readme/es.html +++ b/sources/readme/es.html @@ -1,3 +1,4 @@ +

pytextmonitor

Información

diff --git a/sources/readme/ru.html b/sources/readme/ru.html index c3b7ae3..13f3a94 100644 --- a/sources/readme/ru.html +++ b/sources/readme/ru.html @@ -1,3 +1,4 @@ +

pytextmonitor

Информация

diff --git a/sources/readme/uk.html b/sources/readme/uk.html index 94c82c9..e637885 100644 --- a/sources/readme/uk.html +++ b/sources/readme/uk.html @@ -1,3 +1,4 @@ +

pytextmonitor

Информация

diff --git a/update_files.sh b/update_files.sh index 289279d..33a8bba 100755 --- a/update_files.sh +++ b/update_files.sh @@ -10,5 +10,6 @@ cp README.md md_readme/en.md for MARKDOWN in $(find md_readme -name '*.md'); do FILENAME=$(basename -- "${MARKDOWN}") FILENAME="${FILENAME%.*}" - markdown "${MARKDOWN}" > "sources/readme/${FILENAME}.html" + echo '' > "sources/readme/${FILENAME}.html" + markdown "${MARKDOWN}" >> "sources/readme/${FILENAME}.html" done