diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-11-09 12:51:48 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-11-09 12:51:48 +0300 |
commit | 0fd2c5ce4493b1e5592194ac6117f05f28c2d6a6 (patch) | |
tree | a59f791fee83544aa5b28d38fc64ffc1d5464015 /scripts/create_font_data.html | |
parent | 7e531311bf8f5d07756bd0e285f7d197b828a9ba (diff) | |
download | UEFI-Lessons-0fd2c5ce4493b1e5592194ac6117f05f28c2d6a6.tar.gz UEFI-Lessons-0fd2c5ce4493b1e5592194ac6117f05f28c2d6a6.tar.bz2 UEFI-Lessons-0fd2c5ce4493b1e5592194ac6117f05f28c2d6a6.zip |
Fix comment formatting in the
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'scripts/create_font_data.html')
-rw-r--r-- | scripts/create_font_data.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create_font_data.html b/scripts/create_font_data.html index 19b99de..8514813 100644 --- a/scripts/create_font_data.html +++ b/scripts/create_font_data.html @@ -4,7 +4,7 @@ -<-- MAKE REPLACEMENTS WITH YOUR FONT IN THE 3 MARKED PLACES --> +<!-- MAKE REPLACEMENTS WITH YOUR FONT IN THE 3 MARKED PLACES --> <html> <head> @@ -45,7 +45,7 @@ canvas.style.height = 32 const ctx = canvas.getContext('2d'); ctx.strokeRect(0, 0, FW, FH); - ctx.font = "19px AST" <-- REPLACE WITH YOUR FONT (2) --> + ctx.font = "19px AST" <!-- REPLACE WITH YOUR FONT (2) --> ctx.fillstyle='#00f'; var wide_glyphs_str="EFI_WIDE_GLYPH gSimpleFontWideGlyphData[] = {<BR>"; @@ -97,7 +97,7 @@ const unicode_start_code = 0x0400; const unicode_end_code = 0x045F; - var f = new FontFace('AST', 'url(web_ast_premiumexec.woff)'); <-- REPLACE WITH YOUR FONT (3) --> + var f = new FontFace('AST', 'url(web_ast_premiumexec.woff)'); <!-- REPLACE WITH YOUR FONT (3) --> f.load().then(function() { document.write(UnicodeToGlyphs(unicode_start_code, unicode_end_code)); }) |