This repository has been archived by the owner on Feb 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 204
Fix parsing of inline code blocks with multiple backticks #260
Merged
srawlins
merged 2 commits into
dart-archive:master
from
srawlins:fix-multiple-backtick-code
Sep 13, 2019
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
import 'package:charcode/charcode.dart'; | ||
|
||
import 'ast.dart'; | ||
import 'document.dart'; | ||
import 'util.dart'; | ||
|
@@ -25,7 +27,7 @@ final _blockquotePattern = RegExp(r'^[ ]{0,3}>[ ]?(.*)$'); | |
final _indentPattern = RegExp(r'^(?: | {0,3}\t)(.*)$'); | ||
|
||
/// Fenced code block. | ||
final _codePattern = RegExp(r'^[ ]{0,3}(`{3,}|~{3,})(.*)$'); | ||
final _codeFencePattern = RegExp(r'^[ ]{0,3}(`{3,}|~{3,})(.*)$'); | ||
|
||
/// Three or more hyphens, asterisks or underscores by themselves. Note that | ||
/// a line like `----` is valid as both HR and SETEXT. In case of a tie, | ||
|
@@ -265,7 +267,7 @@ class SetextHeaderSyntax extends BlockSyntax { | |
|
||
bool _interperableAsParagraph(String line) => | ||
!(_indentPattern.hasMatch(line) || | ||
_codePattern.hasMatch(line) || | ||
_codeFencePattern.hasMatch(line) || | ||
_headerPattern.hasMatch(line) || | ||
_blockquotePattern.hasMatch(line) || | ||
_hrPattern.hasMatch(line) || | ||
|
@@ -404,12 +406,28 @@ class CodeBlockSyntax extends BlockSyntax { | |
|
||
/// Parses preformatted code blocks between two ~~~ or ``` sequences. | ||
/// | ||
/// See [Pandoc's documentation](http://pandoc.org/README.html#fenced-code-blocks). | ||
/// See the CommonMark spec: https://spec.commonmark.org/0.29/#fenced-code-blocks | ||
class FencedCodeBlockSyntax extends BlockSyntax { | ||
RegExp get pattern => _codePattern; | ||
RegExp get pattern => _codeFencePattern; | ||
|
||
const FencedCodeBlockSyntax(); | ||
|
||
bool canParse(BlockParser parser) { | ||
var match = pattern.firstMatch(parser.current); | ||
if (match == null) return false; | ||
final codeFence = match.group(1); | ||
final infoString = match.group(2); | ||
// From the CommonMark spec: | ||
// | ||
// > If the info string comes after a backtick fence, it may not contain | ||
// > any backtick characters. | ||
if (codeFence.codeUnitAt(0) == $backquote && | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about: return codeFence.codeUnitAt(0) != $backquote ||
!infoString.codeUnits.contains($backquote)); There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
infoString.codeUnits.contains($backquote)) { | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
List<String> parseChildLines(BlockParser parser, [String endBlock]) { | ||
if (endBlock == null) endBlock = ''; | ||
|
||
|
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
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
var
here and below orfinal
above.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.