https://github.com/erossini/simpleminifierxml
Code for a simple XML minifier in C#
https://github.com/erossini/simpleminifierxml
csharp minify svg xml xml-parsing
Last synced: 9 months ago
JSON representation
Code for a simple XML minifier in C#
- Host: GitHub
- URL: https://github.com/erossini/simpleminifierxml
- Owner: erossini
- Created: 2022-01-28T08:31:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-28T09:22:00.000Z (over 4 years ago)
- Last Synced: 2025-03-01T19:12:52.092Z (over 1 year ago)
- Topics: csharp, minify, svg, xml, xml-parsing
- Language: C#
- Homepage: https://www.puresourcecode.com/dotnet/csharp/simple-xml-minifier-in-c/
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple XML Minifier in C#
I give you my code for a simple XML minifier in C# related to my post "[Simple XML minifier in C#](https://www.puresourcecode.com/dotnet/csharp/simple-xml-minifier-in-c/)" on [PureSourceCode](https://www.puresourcecode.com).
So, I was working on a new component for Blazor for [displaying icons and flags](https://www.puresourcecode.com/dotnet/blazor/svg-icons-and-flags-for-blazor/). The SVG images are a list of command for drawing a picture in a XML style. As every other XML, the code is indented. So, as humans we can read better the code.
In my specific case, I want to have for each image a string and create a class with all the icons code in SVG (if it is not clear what I mean, see the [post](https://www.puresourcecode.com/dotnet/blazor/svg-icons-and-flags-for-blazor/)).
Please leave your comment on my [forum](https://www.puresourcecode.com/forum/).