mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-03-31 05:45:56 +08:00

Jekyll was ignoring all of the files in src/doc/assets/fork-awesome/scss that began with an underscore when copying to _site. Removed the underscore and appended `.txt` so they would be copied to _site We put the underscore back and remove the .txt extension in the Makefile
14 lines
357 B
Plaintext
14 lines
357 B
Plaintext
---
|
|
---
|
|
// Functions
|
|
// --------------------------
|
|
|
|
// Helper function which adds quotes to preserve unicode values in CSS output.
|
|
//
|
|
// See: https://github.com/sass/sass/issues/1395
|
|
// See: https://stackoverflow.com/questions/30421570/sass-unicode-escape-is-not-preserved-in-css-file
|
|
|
|
@function fa-content($fa-var) {
|
|
@return unquote("\"#{$fa-var}\"");
|
|
}
|