rstudio / fontawesome

Easily insert FontAwesome icons into R Markdown docs and Shiny apps
https://rstudio.github.io/fontawesome/
Other
296 stars 39 forks source link

Allow use of CSS lengths with decimals #74

Closed rich-iannone closed 2 years ago

rich-iannone commented 2 years ago

This fixes a bug in the get_length_value_unit() util function that doesn't take into account CSS length values that have fractional parts. The regex patterns now consider the presence of a . in the value part. Several testthat tests were added to ensure that the changes now work with CSS lengths such as "0.563em".

Fixes #73 Fixes #66