diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-08-22 23:38:39 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-08-22 23:38:39 -0400 |
commit | fa014ac7743836db611713ca630a4919e8d5fa3d (patch) | |
tree | 5a08a0fdb39697369705a1e3b918468c08810b95 /tests/misc/arabic.html | |
parent | e12a10d1754a13cd3a7f5b341d26ea17035105d8 (diff) | |
download | markdown-fa014ac7743836db611713ca630a4919e8d5fa3d.tar.gz markdown-fa014ac7743836db611713ca630a4919e8d5fa3d.tar.bz2 markdown-fa014ac7743836db611713ca630a4919e8d5fa3d.zip |
Fixed Ticket 11. Disabled ``indenteTree`` for `pre` and `code` tags. Now
whitespace is preserved in codeblocks.
As a side-benefit, this also solved the issue with the safe-mode tests failing.
All tests incorectly altered at ElementTree conversion have been corrected for
this bug. Any remaining tests that fail are unrelated to this.
Diffstat (limited to 'tests/misc/arabic.html')
-rw-r--r-- | tests/misc/arabic.html | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/tests/misc/arabic.html b/tests/misc/arabic.html index 830d62a..073febb 100644 --- a/tests/misc/arabic.html +++ b/tests/misc/arabic.html @@ -5,13 +5,10 @@ <p>تتميز بايثون بمجتمعها النشط ، كما أن لها الكثير من المكتبات البرمجية ذات الأغراض الخاصة والتي برمجها أشخاص من مجتمع هذه اللغة ، مثلاً مكتبة PyGame التي توفر مجموعه من الوظائف من اجل برمجة الالعاب. ويمكن لبايثون التعامل مع العديد من أنواع قواعد البيانات مثل MySQL وغيره.</p> <h2>أمثلة</h2> <p>مثال Hello World!</p> -<pre> - <code>print "Hello World!" -</code> -</pre> +<pre><code>print "Hello World!" +</code></pre> <p>مثال لاستخراج المضروب Factorial :</p> -<pre> - <code>num = 1 +<pre><code>num = 1 x = raw_input('Insert the number please ') x = int(x) @@ -23,13 +20,11 @@ else: x = x-1 print num -</code> -</pre> +</code></pre> <h2>وصلات خارجية</h2> <ul> <li> <a href="http://www.python.org">الموقع الرسمي للغة بايثون</a> </li> </ul> -<p> بذرة حاس </p> - +<p> بذرة حاس </p>
\ No newline at end of file |