-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Parlot #36
Update Parlot #36
Conversation
7924662
to
17bad57
Compare
This is using Parlot 1.0.2 but the other libraries should not need to be updated as there are no breaking changes. Pinning OC to 1.0.2 would work too. |
@@ -128,16 +128,17 @@ private Shortcode ParseShortcode() | |||
{ | |||
arguments ??= CreateArgumentsDictionary(); | |||
|
|||
arguments[argumentIndex.ToString()] = Character.DecodeString(new TextSpan(_scanner.Buffer, _result.Start + 1, _result.Length - 2)).ToString(); | |||
arguments[argumentIndex.ToString()] = Character.DecodeString(_result)[1..^1].ToString(); |
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.
Got to love this syntax :)
<PackageReference Include="xunit" Version="2.4.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> | ||
<PackageReference Include="coverlet.collector" Version="1.2.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0-release-24352-06" /> |
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.
Are you sure about this version?
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.
NuGet package manager did it by itself, had not checked
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.
I had the pre-release checkbox
17bad57
to
020cf9a
Compare
No description provided.