giraffe-fsharp / Giraffe

A native functional ASP.NET Core web framework for F# developers.
https://giraffe.wiki
Apache License 2.0
2.12k stars 266 forks source link

Inline SVG #247

Closed nagpal closed 6 years ago

nagpal commented 6 years ago

Hi,

Is there any support in the giraffe View Engine for cases where we have inline svgs?

-Vijay

dustinmoris commented 6 years ago

Yes, have a look at https://github.com/dustinmoris/CI-BuildStats, particularly have a look at https://github.com/dustinmoris/CI-BuildStats/blob/master/src/BuildStats/Views.fs#L20 and https://github.com/dustinmoris/CI-BuildStats/blob/master/src/BuildStats/Program.fs#L28 where I use the Giraffe view engine to render SVG images. You can just output that SVG tag inside a HTML page as well.

nagpal commented 6 years ago

Thanks a lot!