Skip to content

Commit

Permalink
フォーマット
Browse files Browse the repository at this point in the history
  • Loading branch information
TakenPt committed Mar 15, 2024
1 parent 0eebe90 commit 585737c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Epub/KoeBook.Epub/Models/ScrapingBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ internal void AddText(List<string> texts)
{
stringBuilders.Add(new StringBuilder(texts[i]));
}
}
}

internal List<string> GetText()
{
Expand Down
2 changes: 1 addition & 1 deletion Epub/KoeBook.Epub/Services/ScrapingNaroService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private async Task<SectionWithChapterTitle> ReadPageAsync(string url, bool isRen
}
}
else if (item.Children[0] is IHtmlBreakRowElement)
{
{
foreach (var split in SplitBrace(GetText()))
{
section.Elements.Add(new Paragraph() { Text = split });
Expand Down

0 comments on commit 585737c

Please sign in to comment.