Skip to content

Commit 0cb3c8b

Browse files
committed
Resolve #327
1 parent ade1ba9 commit 0cb3c8b

File tree

5 files changed

+167
-1
lines changed

5 files changed

+167
-1
lines changed
+48
Loading

docs/32000-2-2020/PDF-Integer.ebnf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@startebnf
2+
PDF_IntegerObject = [ ( "+" | "-" ) ], {DecimalDigit}-;
3+
@endebnf

docs/32000-2-2020/PDF-Real-EBNF.svg

+100
Loading

docs/32000-2-2020/PDF-Real.ebnf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@startebnf
2+
PDF_RealObject = [ ( "+" | "-" ) ], ((".", {DecimalDigit}-) | ({DecimalDigit}-, ".", {DecimalDigit}));
3+
@endebnf

docs/32000-2-2020/clause07.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ subset: PDF 2.0
33
isodoc: ISO 32000-2:2020
44
clause: 7
55
title: Syntax
6-
modified: 6 October 2023
6+
modified: 24 October 2023
77
---
88

99
<ul class="noprint">
@@ -217,13 +217,25 @@ However, a</del>
217217

218218
<h3 id="H7.3.3">7.3.3 Numeric objects</h3>
219219

220+
<p class="location">Add the following EBNF figure and embedded attachment above EXAMPLE 1:</p>
221+
222+
<img src="PDF-Integer-EBNF.svg" alt="EBNF railroad diagram for PDF integer object">
223+
<a href="PDF-Integer.ebnf"><span style="font-size: xx-large;">&#x1f4ce;</span></a>
224+
225+
220226
<p class="location">Change EXAMPLE 1 as follows:</p>
221227

222228
<p>EXAMPLE 1 Integer objects</p>
223229
<code class="hangingindent">123 43445 +17 -98 0 <ins onMouseEnter="mouseEnter(this)" data-issue="300">00987</ins></code>
224230

225231
<p>...</p>
226232

233+
<p class="location">Add the following EBNF figure and embedded attachment above EXAMPLE 2:</p>
234+
235+
<img src="PDF-Real-EBNF.svg" alt="EBNF railroad diagram for PDF real object">
236+
<a href="PDF-Real.ebnf"><span style="font-size: xx-large;">&#x1f4ce;</span></a>
237+
238+
227239
<p class="location">Change EXAMPLE 2 as follows:</p>
228240

229241
<p>EXAMPLE 2 Real objects</p>

0 commit comments

Comments
 (0)