From da6bd27eec9ff036588fcc98b545913b2b1a12a1 Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Thu, 20 Jun 2019 14:49:26 -0700 Subject: [PATCH] fix: converted single to triple backticks9 (#36236) --- guide/arabic/html/elements/p-tag/index.md | 34 +- guide/arabic/html/elements/s-tag/index.md | 8 +- .../arabic/html/elements/script-tag/index.md | 27 +- .../arabic/html/elements/section-tag/index.md | 26 +- guide/arabic/html/elements/span-tag/index.md | 6 +- .../arabic/html/elements/strong-tag/index.md | 18 +- guide/arabic/html/elements/style-tag/index.md | 20 +- guide/arabic/html/elements/table-tag/index.md | 24 +- guide/arabic/html/elements/td-tag/index.md | 38 +-- .../html/elements/textarea-tag/index.md | 10 +- guide/arabic/html/html-entities/index.md | 20 +- guide/arabic/html/html-forms/index.md | 40 +-- guide/arabic/html/html5-audio/index.md | 22 +- .../html/html5-semantic-elements/index.md | 134 ++++---- guide/arabic/html/html5-video/index.md | 18 +- guide/arabic/html/html5-web-storage/index.md | 41 ++- guide/arabic/html/iframes/index.md | 36 +- guide/arabic/html/index.md | 28 +- guide/arabic/html/layouts/index.md | 19 +- guide/arabic/html/lists/index.md | 65 ++-- guide/arabic/html/mailto-links/index.md | 18 +- guide/arabic/html/optional-tags/index.md | 28 +- guide/arabic/html/page-structure/index.md | 21 +- .../html/responsive-web-design/index.md | 30 +- .../index.md | 74 ++--- .../embedding-youtube-videos/index.md | 20 +- .../index.md | 22 +- .../index.md | 74 +++-- .../html/tutorials/how-to-use-links/index.md | 12 +- .../html/tutorials/how-to-use-lists/index.md | 44 +-- .../html/tutorials/images-in-html/index.md | 30 +- .../text-formatting-in-html/index.md | 10 +- .../html/url-encoding-reference/index.md | 7 +- guide/arabic/html/utf-8-reference/index.md | 10 +- .../ionic/hello-world-in-ionic/index.md | 19 +- guide/arabic/java/abstract-class/index.md | 5 +- guide/arabic/java/access-modifiers/index.md | 45 +-- guide/arabic/java/arrays/index.md | 139 ++++---- guide/arabic/java/built-in-functions/index.md | 7 +- guide/arabic/java/collections/index.md | 92 ++--- guide/arabic/java/comments-in-java/index.md | 5 +- guide/arabic/java/constructors/index.md | 76 +++-- guide/arabic/java/control-flow/index.md | 99 +++--- guide/arabic/java/data-types/index.md | 5 +- .../arabic/java/defining-attributes/index.md | 19 +- guide/arabic/java/equality/index.md | 38 ++- guide/arabic/java/final-keyword/index.md | 15 +- guide/arabic/java/finally-keyword/index.md | 21 +- .../arabic/java/getters-and-setters/index.md | 46 +-- guide/arabic/java/inheritance-basics/index.md | 73 ++-- guide/arabic/java/inheritance/index.md | 185 ++++++----- guide/arabic/java/interfaces/index.md | 313 +++++++++--------- guide/arabic/java/javafx/index.md | 9 +- .../loops/break-control-statement/index.md | 31 +- .../loops/continue-control-statement/index.md | 60 ++-- .../java/loops/control-statements/index.md | 38 ++- .../arabic/java/loops/do-while-loop/index.md | 53 +-- .../arabic/java/loops/for-each-loop/index.md | 47 +-- guide/arabic/java/loops/for-loop/index.md | 58 ++-- .../arabic/java/loops/infinite-loops/index.md | 54 +-- guide/arabic/java/loops/while-loop/index.md | 39 ++- guide/arabic/java/methods/index.md | 17 +- guide/arabic/java/pojo/index.md | 9 +- guide/arabic/java/static/index.md | 144 ++++---- guide/arabic/java/streams/index.md | 95 +++--- guide/arabic/java/strings/index.md | 98 +++--- guide/arabic/java/throw-keyword/index.md | 5 +- guide/arabic/java/variables/index.md | 52 +-- .../angularjs-interview-questions/index.md | 10 +- guide/arabic/javascript/arguments/index.md | 35 +- .../index.md | 49 +-- guide/arabic/javascript/booleans/index.md | 88 ++--- .../javascript/callback-functions/index.md | 82 ++--- guide/arabic/javascript/classes/index.md | 233 ++++++------- guide/arabic/javascript/closures/index.md | 95 +++--- 75 files changed, 1904 insertions(+), 1733 deletions(-) diff --git a/guide/arabic/html/elements/p-tag/index.md b/guide/arabic/html/elements/p-tag/index.md index 868426b14f..2011b6dad9 100644 --- a/guide/arabic/html/elements/p-tag/index.md +++ b/guide/arabic/html/elements/p-tag/index.md @@ -12,28 +12,28 @@ localeTitle: ف يوم ### مثال - ` - -
-- This sentence was created to show how the paragraph works. -
- - -` +```html + + ++ This sentence was created to show how the paragraph works. +
+ + +``` يمكنك أيضًا تضمين عنصر الارتساء `` في فقرة. ### مثال - ` -Here's a - link to Free Code Camp.com - for you to follow.
-` +```html +Here's a + link to Free Code Camp.com + for you to follow.
+``` #### معلومات اكثر: diff --git a/guide/arabic/html/elements/s-tag/index.md b/guide/arabic/html/elements/s-tag/index.md index eff5e9fe7b..29bbab80a5 100644 --- a/guide/arabic/html/elements/s-tag/index.md +++ b/guide/arabic/html/elements/s-tag/index.md @@ -6,10 +6,10 @@ localeTitle: يوم واحد في HTML ، يتم استخدام العلامة `This year is the year of the monkey.
This year is the year of the Rooster.
-` +```html +This year is the year of the monkey.
This year is the year of the Rooster.
+``` #### معلومات اكثر: diff --git a/guide/arabic/html/elements/script-tag/index.md b/guide/arabic/html/elements/script-tag/index.md index 921dba54c2..72c0df6e3e 100644 --- a/guide/arabic/html/elements/script-tag/index.md +++ b/guide/arabic/html/elements/script-tag/index.md @@ -8,24 +8,27 @@ localeTitle: علامة البرنامج النصي يتم استخدام العلامة / ` - - + + -` +``` + +``` أو يمكنك استخدامه كطريقة للإشارة إلى ملف جافا سكريبت خارجي مثل هذا - ` -` +``` + +``` وهنا تأخذ خاصية `src` للعنصر مسارًا إلى ملف Javascript diff --git a/guide/arabic/html/elements/section-tag/index.md b/guide/arabic/html/elements/section-tag/index.md index 3ef0e0394c..f5bb9cac4a 100644 --- a/guide/arabic/html/elements/section-tag/index.md +++ b/guide/arabic/html/elements/section-tag/index.md @@ -10,19 +10,19 @@ localeTitle: قسم القسم لا ينبغي استخدام عنصر `Bunch of awesome content
-Bunch of awesome content
+This paragraph has red span styling inside it without affecting the rest of the document.
-` +```html +This paragraph has red span styling inside it without affecting the rest of the document.
+``` #### الاختلافات بين `` و `- This is important. -
- -` +``` + ++ This is important. +
+ +``` #### معلومات اكثر: diff --git a/guide/arabic/html/elements/style-tag/index.md b/guide/arabic/html/elements/style-tag/index.md index 9b1d854813..3043167fb5 100644 --- a/guide/arabic/html/elements/style-tag/index.md +++ b/guide/arabic/html/elements/style-tag/index.md @@ -26,15 +26,15 @@ localeTitle: علامة نمط تُستخدم علامة النمط لتعيين أي أنماط CSS لصفحة الويب داخل مستند. يجب أن تكون علامة النمط متداخلة مع قسم الرأس في مستند html: - ` - - - -` +```html + + + +``` يمكنك كتابة أي علامة نمط داخلية للرمز CSS - وفقًا للبناء الخاص بها. \ No newline at end of file diff --git a/guide/arabic/html/elements/table-tag/index.md b/guide/arabic/html/elements/table-tag/index.md index 87d1755b88..ecc5841356 100644 --- a/guide/arabic/html/elements/table-tag/index.md +++ b/guide/arabic/html/elements/table-tag/index.md @@ -8,18 +8,18 @@ localeTitle: علامة الجدول ### مثال - ` -Row 1, Cell 1 | -Row 1, Cell 2 | -
Row 2, Cell 1 | -Row 2, Cell 2 | -
Row 1, Cell 1 | +Row 1, Cell 2 | +
Row 2, Cell 1 | +Row 2, Cell 2 | +
Header1 | -Header2 | -
---|---|
Cell A | -Cell B | -
Header1 | +Header2 | +
---|---|
Cell A | +Cell B | +
Top Stories
-News
-Sport
-Top Stories
+News
+Sport
+