diff options
author | TheDmitry <TheDmitry@users.noreply.github.com> | 2015-02-09 11:14:16 +0300 |
---|---|---|
committer | TheDmitry <TheDmitry@users.noreply.github.com> | 2015-02-09 11:14:16 +0300 |
commit | bc136b96f87de5418ac2da287751f1642a3d3741 (patch) | |
tree | f59135d326054a871cffc428d942afbcb7942926 /ru-ru/xml-ru.html.markdown | |
parent | b025dbd8cb97b000fe34ae72f488b2c060712da4 (diff) |
[xml/ru] XML Document
Diffstat (limited to 'ru-ru/xml-ru.html.markdown')
-rw-r--r-- | ru-ru/xml-ru.html.markdown | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ru-ru/xml-ru.html.markdown b/ru-ru/xml-ru.html.markdown index 65de9049..27f66417 100644 --- a/ru-ru/xml-ru.html.markdown +++ b/ru-ru/xml-ru.html.markdown @@ -15,25 +15,25 @@ XML - это язык разметки, предназначеный для хр * XML Синтаксис ```xml -<!-- Comments in XML are like this --> +<!-- Комментраии в XML выглядят так --> <?xml version="1.0" encoding="UTF-8"?> <bookstore> - <book category="COOKING"> + <book category="КУЛИНАРИЯ"> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> - <book category="CHILDREN"> - <title lang="en">Harry Potter</title> - <author>J K. Rowling</author> + <book category="ДЕТИ"> + <title lang="ru">Гарри Поттер</title> + <author>Дж. К. Роулинг</author> <year>2005</year> <price>29.99</price> </book> - <book category="WEB"> - <title lang="en">Learning XML</title> - <author>Erik T. Ray</author> + <book category="ВСЕМИРНАЯ ПАУТИНА"> + <title lang="ru">Изучаем XML</title> + <author>Эрик Рэй</author> <year>2003</year> <price>39.95</price> </book> @@ -126,4 +126,4 @@ With this tool, you can check the XML data outside the application logic. <price>30.00</price> </book> </bookstore> -```
\ No newline at end of file +``` |