Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace i with em. #2522

Merged
merged 1 commit into from
Sep 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"div", "span", "p",
"table", "th", "tr", "td",
"code", "pre",
"i", "strong", "em",
"strong", "em",
"sup"
]
},
Expand Down
18 changes: 9 additions & 9 deletions locale/ar/docs/guides/debugging-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ layout: docs.hbs
</td>
</tr>
<tr>
<td><span dir="ltr">--inspect=<i>[host:port]</i></span></td>
<td><span dir="ltr">--inspect=<em>[host:port]</em></span></td>
<td>
<ul>
<li>يقوم بتمكين عميل التدقيق</li>
<li>يحدد عنوانا أو إسم مضيف <i>host</i> (افتراضيا: 127.0.0.1)</li>
<li>يشتغل على المنفذ <i>port</i> (افتراضيا: 9229)</li>
<li>يحدد عنوانا أو إسم مضيف <em>host</em> (افتراضيا: 127.0.0.1)</li>
<li>يشتغل على المنفذ <em>port</em> (افتراضيا: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -133,30 +133,30 @@ layout: docs.hbs
</td>
</tr>
<tr>
<td><span dir="ltr">--inspect-brk=<i>[host:port]</i><span></td>
<td><span dir="ltr">--inspect-brk=<em>[host:port]</em><span></td>
<td>
<ul>
<li>يقوم بتمكين عميل التدقيق</li>
<li>يحدد عنوانا قيمته <i>host</i> (افتراضيا: 127.0.0.1)</li>
<li>يشتغل على المنفذ <i>port</i> (افتراضيا: 9229)</li>
<li>يحدد عنوانا قيمته <em>host</em> (افتراضيا: 127.0.0.1)</li>
<li>يشتغل على المنفذ <em>port</em> (افتراضيا: 9229)</li>
<li>يتوقف قبل بدء تنفيذ شيفرة المستخدم</li>
</ul>
</td>
</tr>
<tr>
<td><span dir="ltr"><code>node inspect <i>script.js</i></code></span></td>
<td><span dir="ltr"><code>node inspect <em>script.js</em></code></span></td>
<td>
<ul>
<li>يخبر العمليات الفرعية بتنفيذ السكربت الخاص بالمستخدم تحت علم <span dir="ltr">--inspect</span> مع استعمال العملية الرئيسية لتشغيل مصحح الأخطاء من سطر الأوامر.</li>
</ul>
</td>
</tr>
<tr>
<td><span dir="ltr"><code>node inspect --port=xxxx <i>script.js</i></code><span></td>
<td><span dir="ltr"><code>node inspect --port=xxxx <em>script.js</em></code><span></td>
<td>
<ul>
<li>يخبر العمليات الفرعية بتنفيذ السكربت الخاص بالمستخدم تحت علم <span dir="ltr">--inspect</span> مع استعمال العملية الرئيسية لتشغيل مصحح الأخطاء من سطر الأوامر.</li>
<li>يشتغل عبر المنفذ <i>port</i> (افتراضيا: 9229)</li>
<li>يشتغل عبر المنفذ <em>port</em> (افتراضيا: 9229)</li>
</ul>
</td>
</tr>
Expand Down
18 changes: 9 additions & 9 deletions locale/en/docs/guides/debugging-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect=<i>[host:port]</i></td>
<td>--inspect=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -152,18 +152,18 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect-brk=<i>[host:port]</i></td>
<td>--inspect-brk=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
<li>Break before user code starts</li>
</ul>
</td>
</tr>
<tr>
<td><code>node inspect <i>script.js</i></code></td>
<td><code>node inspect <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
Expand All @@ -172,12 +172,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td><code>node inspect --port=xxxx <i>script.js</i></code></td>
<td><code>node inspect --port=xxxx <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
and use main process to run CLI debugger.</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand Down
18 changes: 9 additions & 9 deletions locale/fa/docs/guides/debugging-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect=<i>[host:port]</i></td>
<td>--inspect=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -147,18 +147,18 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect-brk=<i>[host:port]</i></td>
<td>--inspect-brk=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
<li>Break before user code starts</li>
</ul>
</td>
</tr>
<tr>
<td><code>node inspect <i>script.js</i></code></td>
<td><code>node inspect <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
Expand All @@ -167,12 +167,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td><code>node inspect --port=xxxx <i>script.js</i></code></td>
<td><code>node inspect --port=xxxx <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
and use main process to run CLI debugger.</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand Down
18 changes: 9 additions & 9 deletions locale/it/docs/guides/debugging-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect=<i>[host:port]</i></td>
<td>--inspect=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -165,18 +165,18 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect-brk=<i>[host:port]</i></td>
<td>--inspect-brk=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
<li>Break before user code starts</li>
</ul>
</td>
</tr>
<tr>
<td><code>node inspect <i>script.js</i></code></td>
<td><code>node inspect <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
Expand All @@ -185,12 +185,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td><code>node inspect --port=xxxx <i>script.js</i></code></td>
<td><code>node inspect --port=xxxx <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
and use main process to run CLI debugger.</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand Down
36 changes: 18 additions & 18 deletions locale/ja/docs/guides/debugging-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect=<i>[host:port]</i></td>
<td>--inspect=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -277,18 +277,18 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect-brk=<i>[host:port]</i></td>
<td>--inspect-brk=<em>[host:port]</em></td>
<td>
<ul>
<li>Enable inspector agent</li>
<li>Bind to address or hostname <i>host</i> (default: 127.0.0.1)</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Bind to address or hostname <em>host</em> (default: 127.0.0.1)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
<li>Break before user code starts</li>
</ul>
</td>
</tr>
<tr>
<td><code>node inspect <i>script.js</i></code></td>
<td><code>node inspect <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
Expand All @@ -297,12 +297,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td><code>node inspect --port=xxxx <i>script.js</i></code></td>
<td><code>node inspect --port=xxxx <em>script.js</em></code></td>
<td>
<ul>
<li>Spawn child process to run user's script under --inspect flag;
and use main process to run CLI debugger.</li>
<li>Listen on port <i>port</i> (default: 9229)</li>
<li>Listen on port <em>port</em> (default: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -327,12 +327,12 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect=<i>[host:port]</i></td>
<td>--inspect=<em>[host:port]</em></td>
<td>
<ul>
<li>インスペクタエージェントを有効にする</li>
<li>アドレスまたはホスト名 <i>host</i> にバインド (デフォルト: 127.0.0.1)</li>
<li><i>port</i> ポートで待ち受ける (デフォルト: 9229)</li>
<li>アドレスまたはホスト名 <em>host</em> にバインド (デフォルト: 127.0.0.1)</li>
<li><em>port</em> ポートで待ち受ける (デフォルト: 9229)</li>
</ul>
</td>
</tr>
Expand All @@ -347,30 +347,30 @@ The following table lists the impact of various runtime flags on debugging:
</td>
</tr>
<tr>
<td>--inspect-brk=<i>[host:port]</i></td>
<td>--inspect-brk=<em>[host:port]</em></td>
<td>
<ul>
<li>インスペクタエージェントを有効にする</li>
<li>アドレスまたはホスト名 <i>host</i> にバインド (デフォルト: 127.0.0.1)</li>
<li><i>port</i> ポートで待ち受ける (デフォルト: 9229)</li>
<li>アドレスまたはホスト名 <em>host</em> にバインド (デフォルト: 127.0.0.1)</li>
<li><em>port</em> ポートで待ち受ける (デフォルト: 9229)</li>
<li>ユーザーコードが始まる前に中断する</li>
</ul>
</td>
</tr>
<tr>
<td><code>node inspect <i>script.js</i></code></td>
<td><code>node inspect <em>script.js</em></code></td>
<td>
<ul>
<li>--inspect フラグの下でユーザのスクリプトを実行するための子プロセスを生成します。そして CLI デバッガを動かすのに主要なプロセスを使用します</li>
</ul>
</td>
</tr>
<tr>
<td><code>node inspect --port=xxxx <i>script.js</i></code></td>
<td><code>node inspect --port=xxxx <em>script.js</em></code></td>
<td>
<ul>
<li>--inspect フラグの下でユーザのスクリプトを実行するための子プロセスを生成します。そして CLI デバッガを動かすのに主要なプロセスを使用します</li>
<li><i>port</i> ポートで待ち受ける (デフォルト: 9229)</li>
<li><em>port</em> ポートで待ち受ける (デフォルト: 9229)</li>
</ul>
</td>
</tr>
Expand Down
Loading