forked from standardebooks/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
t-010 [Manual Review] chapter-1.xhtml Time set with `.` instead of `:`. | ||
1.00 | ||
12.59 |
45 changes: 45 additions & 0 deletions
45
tests/lint/typography/t-010/in/src/epub/text/chapter-1.xhtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" epub:prefix="z3998: http://www.daisy.org/z3998/2012/vocab/structure/" xml:lang="en-GB"> | ||
<head> | ||
<title>I</title> | ||
<link href="../css/core.css" rel="stylesheet" type="text/css"/> | ||
<link href="../css/local.css" rel="stylesheet" type="text/css"/> | ||
</head> | ||
<body epub:type="bodymatter z3998:fiction"> | ||
<section id="chapter-1" epub:type="chapter"> | ||
<h2 epub:type="ordinal z3998:roman">I</h2> | ||
<!-- invalid --> | ||
<p>It is 1.00.</p> | ||
<p>It is 12.59.</p> | ||
|
||
<!-- valid --> | ||
<!-- correct use of : --> | ||
<p>It is 1:00.</p> | ||
<!-- preceded by 0 --> | ||
<p>It is 02.00.</p> | ||
<!-- preceded by = --> | ||
<p>X = 3.00.</p> | ||
<!-- hour component too large to be a time --> | ||
<p>It is 13.00.</p> | ||
<!-- not preceded by space --> | ||
<p>It cost $12.00.</p> | ||
<!-- too many digits in the minute component --> | ||
<p>It is 4.001.</p> | ||
<!-- minute component too large to be a time --> | ||
<p>It is 4.60.</p> | ||
<!-- succeeded by units --> | ||
<p>It is 4.01 cubic.</p> | ||
<p>It is 4.01 metric.</p> | ||
<p>It is 4.01 meters.</p> | ||
<p>It is 4.01 miles.</p> | ||
<p>It is 4.01 feet.</p> | ||
<p>It is 4.01 inches.</p> | ||
<p>It is 4.01′.</p> | ||
<p>It is 4.01″.</p> | ||
<p>It is 4.01°.</p> | ||
<p>It is 4.01%.</p> | ||
<!-- inside anchor --> | ||
<p>See <a href="#">section 4.02</a>.</p> | ||
</section> | ||
</body> | ||
</html> |