Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrsk committed Jan 19, 2024
1 parent 4cd317d commit aeef3f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PastaParser/Library.fs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module PastaParser =
let node = html.DocumentNode.SelectNodes("//main/div/div").Item(0).ChildNodes[1].ChildNodes[1] // div класс с пастой

let pasta = new Pasta(node.FirstChild.InnerText, // div класс с текстом пасты
Seq.toArray (seq { for i in node.ChildNodes[2].ChildNodes do i.ChildNodes[1].InnerText }), // div класс с тегами пасты
Seq.toArray (seq { for i in node.ChildNodes[2].ChildNodes do i.SelectNodes("./text()[normalize-space(.) != '']").Item(0).InnerText }), // div класс с тегами пасты
pastaURL)
// названия классов на сайте это вообще прикол)
// админ сайта, я тебя очень люблю, спасибо за обфускацию в некомерческом проекте. Пожалуйста, не меняй html структуру...
Expand Down
2 changes: 1 addition & 1 deletion PastaParser/PastaParser.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageTags>pasta; parser; copypastasru</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<Version>1.0.4</Version>
<Version>1.0.4.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit aeef3f1

Please sign in to comment.