-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbook.json
85 lines (85 loc) · 2.34 KB
/
book.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"title": "Custom Controls in Assembler",
"description": "Use the win32 api and assembly language to create custom controls for windows.",
"plugins": [
"disqus",
"github",
"meta",
"splitter",
"copy-code-button",
"word-count"
],
"pluginsConfig": {
"disqus": {
"shortName": "custom-controls-in-assembler"
},
"github": {
"url": "https://github.com/mrfearless/creating-controls-in-assembler"
},
"pdf": {
"fontSize": 10,
"margin": {
"right": 32,
"left": 32,
"top": 32,
"bottom": 32
}
},
"meta": {
"data": [
{
"name": "keywords",
"content": "asm, assembly, assembler, controls, masm, win32, windows, fearless"
},
{
"property": "og:title",
"content": "Custom Controls in Assembler"
},
{
"property": "og:description",
"content": "Use the win32 api and assembly language to create custom controls for windows."
},
{
"property": "og:url",
"content": "https://mrfearless.gitbooks.io/creating-controls-in-assembler/content/"
},
{
"property": "og:site_name",
"content": "Custom Controls in Assembler by fearless"
},
{
"property": "og:image",
"content": "https://github.com/mrfearless/creating-controls-in-assembler/blob/master/assets/mrfearless.jpg"
},
{
"name": "twitter:card",
"content": "summary"
},
{
"name": "twitter:title",
"content": "Custom Controls in Assembler"
},
{
"name": "twitter:image",
"content": "https://github.com/mrfearless/creating-controls-in-assembler/blob/master/assets/mrfearless.jpg"
},
{
"name": "twitter:creator",
"content": "@fearless0"
},
{
"name": "twitter:site",
"content": "@fearless0"
},
{
"name": "twitter:url",
"content": "https://mrfearless.gitbooks.io/creating-controls-in-assembler/content/"
},
{
"name": "twitter:description",
"content": "Use the win32 api and assembly language to create custom controls for windows."
}
]
}
}
}