From e3eea9cb669a57579ce44159f4c4c7e8f98b8672 Mon Sep 17 00:00:00 2001 From: froschdesign Date: Wed, 20 Jan 2016 21:16:36 +0100 Subject: [PATCH] [Docs] Fixes #27 - Check For Blockquotes In Docs --- doc/book/zend.i18n.filters.md | 4 ++-- doc/book/zend.i18n.translating.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/book/zend.i18n.filters.md b/doc/book/zend.i18n.filters.md index 6d4be145..bdbe0d2c 100644 --- a/doc/book/zend.i18n.filters.md +++ b/doc/book/zend.i18n.filters.md @@ -38,7 +38,7 @@ echo $filter->filter("This is (my) content: 123"); // Returns "This is my content 123" ``` -> ## Note +> ### Note `Alnum` works on almost all languages, except: Chinese, Japanese and Korean. Within these languages the english alphabet is used instead of the characters from these languages. The language itself is detected using the `Locale`. @@ -79,7 +79,7 @@ echo $filter->filter("This is (my) content: 123"); // Returns "This is my content " ``` -> ## Note +> ### Note `Alpha` works on almost all languages, except: Chinese, Japanese and Korean. Within these languages the english alphabet is used instead of the characters from these languages. The language itself is detected using the `Locale`. diff --git a/doc/book/zend.i18n.translating.md b/doc/book/zend.i18n.translating.md index 64158c17..4069715c 100644 --- a/doc/book/zend.i18n.translating.md +++ b/doc/book/zend.i18n.translating.md @@ -31,7 +31,7 @@ the translations. If the text domain is omitted, it will default to the "default specifies which language the translated strings are from and is only required for formats which contain translations for a single locale. -> ## Note +> ### Note For each text domain and locale combination, there can only be one file loaded. Every successive file would override the translations which were loaded prior.