COMPRESSED BIN JSON
document = stringtable ctortable value
stringtable = length string*length
ctortable = length constructor*length
constructor =
F0-FF value // Internal constructor
00 key // External constructor
value =
| SplineFontDB: 3.0 | |
| FontName: Descret-Roman | |
| FullName: Descret Roman | |
| FamilyName: Descret | |
| Weight: Medium | |
| Copyright: Converted by Andrey V. Panov from TeX fonts | |
| Version: 0.1.0 ; ttfautohint (v1.3) | |
| ItalicAngle: 0 | |
| UnderlinePosition: -150 |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Console] | |
| "ColorTable00"=dword:00373030 | |
| "ColorTable01"=dword:00a86c4f | |
| "ColorTable02"=dword:00008000 | |
| "ColorTable03"=dword:00b0a800 | |
| "ColorTable04"=dword:002d30bc | |
| "ColorTable05"=dword:009a5685 | |
| "ColorTable06"=dword:002d8da1 |
| SplineFontDB: 3.0 | |
| FontName: Untitled2 | |
| FullName: Untitled2 | |
| FamilyName: Untitled2 | |
| Weight: Regular | |
| Copyright: Copyright (c) 2015, be5in | |
| UComments: "2015-9-16: Created with FontForge (http://fontforge.org)" | |
| Version: 001.000 | |
| ItalicAngle: 0 | |
| UnderlinePosition: -100 |
| $input = $args[0] | |
| $output = $input -replace '.(gif|png|jpg|jpeg)$','.2x.png' | |
| echo "$input --> $output" | |
| # 通过叠加在黑色和白色背景上来处理半透明的图片 | |
| # 因为我又一次真特么要放大透明图 | |
| $temp_black = [System.IO.Path]::GetTempFileName() + '.png' | |
| $temp_black_2x = [System.IO.Path]::GetTempFileName() + '.png' | |
| $temp_white = [System.IO.Path]::GetTempFileName() + '.png' | |
| $temp_white_2x = [System.IO.Path]::GetTempFileName() + '.png' | |
| # convert 为 imagemagick |
COMPRESSED BIN JSON
document = stringtable ctortable value
stringtable = length string*length
ctortable = length constructor*length
constructor =
F0-FF value // Internal constructor
00 key // External constructor
value =
| /***** PATCHES *****/ | |
| .monaco-workbench.hc-black { color: #FFF; background-color: #000; } | |
| .monaco-workbench.hc-black .sidebar .separator { background-color: #000; border: 1px solid #6FC3DF; } | |
| .monaco-workbench.hc-black input, | |
| .monaco-workbench.hc-black textarea { | |
| background-color: #000; | |
| } | |
| .monaco-workbench.hc-black .monaco-action-bar .action-item.disabled .action-label.disabled, | |
| .monaco-workbench.hc-black .monaco-action-bar .action-item.disabled .action-label.disabled:hover { | |
| opacity: 1; |
| [-- article --] | |
| [title] Article Title | |
| [arthur] be5invis | |
| [summary] This is the summary of the article | |
| [section] Section One | |
| This is a paragraph. | |
| This is another. | |
| [figure 1] The Sample Image of The Storage Method. |
| <div id="example"> | |
| <test v-bind:type=type v-bind:a="a" v-bind:b="b"></test> | |
| </div> |
| declare-glyph "a.singlestorey" : begin | |
| rhythm {blank curve blank} {blank straight blank} | |
| include : OBarRightShape | |
| include : VBarRight ([rhythm.right.middle] <> 0) xheight | |
| declare-glyph "a" [unicode-of "a"] : begin | |
| include : glyph : "a" + parameters.variantSelector.a |
| typedef uint16_t glyphid_t; | |
| typedef uint16_t shapeid_t; | |
| typedef int16_t sshapeid_t; | |
| typedef struct {...} position_t; | |
| typedef struct CTF1Point { | |
| position_t x; | |
| position_t y; | |
| } CTF1Point; |