Skip to content

Commit

Permalink
feat: 修改目录名。
Browse files Browse the repository at this point in the history
  • Loading branch information
CYJB committed Apr 16, 2024
1 parent d6e147a commit 0f14181
Show file tree
Hide file tree
Showing 120 changed files with 9,628 additions and 7,577 deletions.
2 changes: 1 addition & 1 deletion Cyjb.Markdown.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32602.215
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cyjb.Markdown", "Cyjb.Markdown\Cyjb.Markdown.csproj", "{72856772-0E03-4DB2-97A3-F6500FDA3B09}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cyjb.Markdown", "Markdown\Cyjb.Markdown.csproj", "{72856772-0E03-4DB2-97A3-F6500FDA3B09}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestMarkdown", "TestMarkdown\TestMarkdown.csproj", "{18330B97-4F8B-478A-9363-F6B65C8896DA}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion Example/Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Cyjb.Markdown\Cyjb.Markdown.csproj" />
<ProjectReference Include="..\Markdown\Cyjb.Markdown.csproj" />
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ internal sealed class BlockParser
public BlockParser(TextReader text, ParseOptions? options)
{
// 为了正确处理 Tab 的位置,解析块时需要对列定位。
source = new SourceReader(text);
source = SourceReader.Create(text);

Check failure on line 93 in Markdown/ParseBlock/BlockParser.cs

View workflow job for this annotation

GitHub Actions / build (6.0.x)

'SourceReader' does not contain a definition for 'Create'

Check failure on line 93 in Markdown/ParseBlock/BlockParser.cs

View workflow job for this annotation

GitHub Actions / build (6.0.x)

'SourceReader' does not contain a definition for 'Create'
source.UseLineLocator();
locator = source.Locator!;
this.options = options ?? ParseOptions.Default;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 0f14181

Please sign in to comment.