diff options
author | Patrick McCarty <pnorcks@gmail.com> | 2009-10-04 00:47:10 -0700 |
---|---|---|
committer | Patrick McCarty <pnorcks@gmail.com> | 2009-10-04 00:47:53 -0700 |
commit | e946aaee051a5cf48823303d7b0f36b210f7f785 (patch) | |
tree | 9086d89bab41afad3465217019020f63f301e7e5 | |
parent | 9c4ebd82ee52a5307d2014bac998e89e249327f9 (diff) |
Web/Docs: fix nesting problem for @warning
Also update the macros for translated docs.
-rw-r--r-- | Documentation/de/macros.itexi | 12 | ||||
-rw-r--r-- | Documentation/es/macros.itexi | 12 | ||||
-rw-r--r-- | Documentation/fr/macros.itexi | 12 | ||||
-rw-r--r-- | Documentation/ja/macros.itexi | 12 | ||||
-rw-r--r-- | Documentation/macros.itexi | 2 | ||||
-rw-r--r-- | Documentation/nl/macros.itexi | 12 |
6 files changed, 47 insertions, 15 deletions
diff --git a/Documentation/de/macros.itexi b/Documentation/de/macros.itexi index c93b2a29d8..a8be205b1d 100644 --- a/Documentation/de/macros.itexi +++ b/Documentation/de/macros.itexi @@ -28,9 +28,15 @@ @ifhtml @macro warning{TEXT} -@cartouche -@b{Achtung:} \TEXT\ -@end cartouche +@html +<div class="warning"> +@end html +@strong{Achtung:} \TEXT\ +@c keep the space for proper nesting of </p> + +@html +</div> +@end html @end macro @end ifhtml diff --git a/Documentation/es/macros.itexi b/Documentation/es/macros.itexi index 95da67dd59..eb3c40b5b6 100644 --- a/Documentation/es/macros.itexi +++ b/Documentation/es/macros.itexi @@ -27,9 +27,15 @@ @ifhtml @macro warning{TEXT} -@cartouche -@b{Nota:} \TEXT\ -@end cartouche +@html +<div class="warning"> +@end html +@strong{Nota:} \TEXT\ +@c keep the space for proper nesting of </p> + +@html +</div> +@end html @end macro @end ifhtml diff --git a/Documentation/fr/macros.itexi b/Documentation/fr/macros.itexi index 616c870ead..8ec0eb064d 100644 --- a/Documentation/fr/macros.itexi +++ b/Documentation/fr/macros.itexi @@ -44,9 +44,15 @@ @ifhtml @macro warning{TEXT} -@cartouche -@b{Note :} \TEXT\ -@end cartouche +@html +<div class="warning"> +@end html +@strong{Note :} \TEXT\ +@c keep the space for proper nesting of </p> + +@html +</div> +@end html @end macro @end ifhtml diff --git a/Documentation/ja/macros.itexi b/Documentation/ja/macros.itexi index 4885ba4a91..74c50828d6 100644 --- a/Documentation/ja/macros.itexi +++ b/Documentation/ja/macros.itexi @@ -27,9 +27,15 @@ @ifhtml @macro warning{TEXT} -@cartouche -@b{Note:} \TEXT\ -@end cartouche +@html +<div class="warning"> +@end html +@strong{Note:} \TEXT\ +@c keep the space for proper nesting of </p> + +@html +</div> +@end html @end macro @end ifhtml diff --git a/Documentation/macros.itexi b/Documentation/macros.itexi index ecf01b062c..2c923d7208 100644 --- a/Documentation/macros.itexi +++ b/Documentation/macros.itexi @@ -31,6 +31,8 @@ <div class="warning"> @end html @strong{Note:} \TEXT\ +@c keep the space for proper nesting of </p> + @html </div> @end html diff --git a/Documentation/nl/macros.itexi b/Documentation/nl/macros.itexi index 616c870ead..8ec0eb064d 100644 --- a/Documentation/nl/macros.itexi +++ b/Documentation/nl/macros.itexi @@ -44,9 +44,15 @@ @ifhtml @macro warning{TEXT} -@cartouche -@b{Note :} \TEXT\ -@end cartouche +@html +<div class="warning"> +@end html +@strong{Note :} \TEXT\ +@c keep the space for proper nesting of </p> + +@html +</div> +@end html @end macro @end ifhtml |