We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c77c2 commit dc61080Copy full SHA for dc61080
src/PdfSharp/Pdf.IO/Lexer.cs
@@ -348,7 +348,7 @@ public Symbol ScanName()
348
return _symbol = Symbol.Name;
349
case '[':
350
//TODO: Not Complete
351
- if (IsWhiteSpace(_nextChar) || IsDelimiter(_nextChar) || char.IsNumber(_nextChar) || _nextChar == '-' || PeekArrayKeyword())
+ if (IsWhiteSpace(_nextChar) || IsDelimiter(_nextChar) || char.IsNumber(_nextChar) || _nextChar == '.' || _nextChar == '-' || PeekArrayKeyword())
352
{
353
354
}
0 commit comments