Skip to content

Commit 845d16e

Browse files
authored
Make logos more Woof-compliant (#147)
1 parent 76104fe commit 845d16e

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

PrattParser/PrattParser.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageTags>fsharp;pratt-parser;parsing;parser;top-down;precedence;recursive;descent</PackageTags>
1515
<WarnOn>FS3559</WarnOn>
1616
<PackageId>WoofWare.PrattParser</PackageId>
17-
<PackageIcon>logo.png</PackageIcon>
17+
<PackageIcon>light.png</PackageIcon>
1818
</PropertyGroup>
1919

2020
<ItemGroup>
@@ -26,7 +26,7 @@
2626
<Pack>True</Pack>
2727
<PackagePath>\</PackagePath>
2828
</None>
29-
<None Include="logo.png">
29+
<None Include="..\logos\light.png">
3030
<Pack>True</Pack>
3131
<PackagePath>\</PackagePath>
3232
</None>

PrattParser/logo.png

-78.8 KB
Binary file not shown.

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# WoofWare.PrattParser
22

3-
![Project logo: the face of a cartoon Shiba Inu wearing glasses, looking directly at the viewer, with a background of cartoon basic mathematical symbols. The dog is holding a pencil and a notepad with more symbols written on it. At the bottom is the slogan "EXPRESSION PAWS-ER".](./PrattParser/logo.png)
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="logos/dark.png">
5+
<source media="(prefers-color-scheme: light)" srcset="logos/light.png">
6+
<img alt="Project logo: minimalistic black-and-white face of a cartoon Shiba Inu. The eye on the right as we see it is an arithmetic plus sign. The left eye is not an eye but is another Shiba Inu face; that inner Shiba's face has a right eye being an arithmetic times sign, and its left eye is an eye. Both Shiba faces are framed by large parentheses." src="logos/light.png" width="300">
7+
</picture>
48

59
A [Pratt parser](https://langdev.stackexchange.com/q/3254/1025), based on [Matklad's tutorial](https://matklad.github.io/2020/04/13/simple-but-powerful-pratt-parsing.html).
610

logos/dark.png

136 KB
Loading

logos/light.png

72.4 KB
Loading

0 commit comments

Comments
 (0)