-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
66 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
@font-face { | ||
font-family: "Inter"; | ||
src: url("./fonts/InterVariable.woff2") format("woff2"); | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Mier B"; | ||
src: url("./fonts/MierB-Regular.woff2") format("woff2"); | ||
font-weight: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Mier B"; | ||
src: url("./fonts/MierB-Bold.woff2") format("woff2"); | ||
font-weight: bold; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Mier B"; | ||
src: url("./fonts/MierB-Demi.woff2") format("woff2"); | ||
font-weight: 600; | ||
font-display: swap; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Licensed to Elasticsearch B.V under one or more agreements. | ||
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License. | ||
// See the LICENSE file in the project root for more information | ||
|
||
namespace Elastic.Markdown.Helpers; | ||
|
||
public static class BoolExtensions | ||
{ | ||
public static string ToLowerString(this bool @bool) => @bool.ToString().ToLowerInvariant(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters