mirror of
https://github.com/standardebooks/web.git
synced 2025-07-20 13:24:48 -04:00
Expand flag in 'how to review' guide
This commit is contained in:
parent
de5b668612
commit
8168a125d0
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ require_once('Core.php');
|
||||||
<li>
|
<li>
|
||||||
<h2>Review italics and emphasis elements</h2>
|
<h2>Review italics and emphasis elements</h2>
|
||||||
<p>The <code class="html"><span class="p"><</span><span class="nt">i</span><span class="p">></span></code> and <code><span class="p"><</span><span class="nt">em</span><span class="p">></span></code> elements are not to be used interchangeably (see relevant section of the Manual <a href="/manual/latest/single-page#4.1.2">here</a> and <a href="/manual/latest/single-page#8.2">here</a>). Use the following command to check their usage in the production (alternatively, use the regular expression search function in a text editor):</p>
|
<p>The <code class="html"><span class="p"><</span><span class="nt">i</span><span class="p">></span></code> and <code><span class="p"><</span><span class="nt">em</span><span class="p">></span></code> elements are not to be used interchangeably (see relevant section of the Manual <a href="/manual/latest/single-page#4.1.2">here</a> and <a href="/manual/latest/single-page#8.2">here</a>). Use the following command to check their usage in the production (alternatively, use the regular expression search function in a text editor):</p>
|
||||||
<code class="terminal"><b>grep</b> --recursive --line-number -E <i>"<i|<em"</i> <u>src/epub/text/<i class="glob">*</i>.xhtml</u></code>
|
<code class="terminal"><b>grep</b> --recursive --line-number --extended-regexp <i>"<i|<em"</i> <u>src/epub/text/<i class="glob">*</i>.xhtml</u></code>
|
||||||
<p>Are there any <code class="html"><span class="p"><</span><span class="nt">i</span><span class="p">></span></code> elements that lack semantics?</p>
|
<p>Are there any <code class="html"><span class="p"><</span><span class="nt">i</span><span class="p">></span></code> elements that lack semantics?</p>
|
||||||
<code class="terminal"><b>grep</b> --recursive --line-number <i>"<i>"</i> <u>src/epub/text/<i class="glob">*</i>.xhtml</u></code>
|
<code class="terminal"><b>grep</b> --recursive --line-number <i>"<i>"</i> <u>src/epub/text/<i class="glob">*</i>.xhtml</u></code>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue