-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_builder.jl
146 lines (145 loc) · 6.89 KB
/
html_builder.jl
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import .bing_dict
function build_html(w::bing_dict.word, word::DataFrameRow{DataFrame,DataFrames.Index}, prev_source::String="")
front = "<h1>" * w.word * "</h1>"
front *= "<div>"
front *= "<a>" * w.phonetic_symbol_US * "</a>" * "<span>[sound:" * w.pronunciation_US * "]</span>"
front *= "<a>" * w.phonetic_symbol_EN * "</a>" * "<span>[sound:" * w.pronunciation_EN * "]</span>"
front *= "</div>"
if prev_source == ""
source = "<span style=\"font-size: xx-large\">Source:</span><br>"
else
source = prev_source * "<br>"
end
source *= "<div style=\"margin-left: 5%;margin-right: 5%;\">"
source *= "<div style=\"text-align: left;\">"
source_ = match(Regex("^(.*?)$(word["word_key"])(.*?)\$"), word["usage"])
source *= source_[1] * "<a>" * word["word_key"] * "</a>" * source_[2]
source *= "</div>"
source *= "<div style=\"text-align: right;\">"
source *= "--" * word["book_key"]
source *= "</div>"
source *= "</div>"
back = "<div>"
for img in w.images
back *= "<img src=\"" * img * "\">"
end
back *= "</div>"
back *= "<div style=\"text-align: left;margin-left: 5%;\">词义总结:<div style=\"text-align: left;margin-left: 5%;font-size: medium;\">"
for meaning in w.meaning_summary
back *= "<div><a>" * meaning["POS"] * (meaning["POS"] == "网络" ? ": </a><span>" : " </a><span>") * meaning["meaning"] * "</span></div>"
end
back *= "</div></div>"
if length(w.transformation) > 0
back *= "<div style=\"text-align: left;margin-left: 5%;\">单词变形:<div style=\"text-align: left;margin-left: 5%;\">"
for transformation in w.transformation
back *= "<span>" * transformation["transform type"] * " </span><a href=\"" * transformation["transformation link"] * "\">" * transformation["transformation"] * " </a>"
end
back *= "</div></div>"
end
if length(w.collocate) > 0
back *= "<div style=\"text-align: left;margin-left: 5%;font-size: medium;\">搭配:"
for collocate in w.collocate
back *= "<div style=\"text-align: left;margin-left: 5%;\">"
back *= "<span>" * collocate.first * " </span>"
if length(collocate.second) > 1
for col in collocate.second[1:end - 1]
back *= "<a href=\"" * col["collocate link"] * "\">" * col["collcate"] * "</a><span>,</span>"
end
end
back *= "<a href=\"" * collocate.second[end]["collocate link"] * "\">" * collocate.second[end]["collcate"] * "</a>"
back *= "</div>"
end
back *= "</div>"
end
if length(w.synonym) > 0
back *= "<div style=\"text-align: left;margin-left: 5%;font-size: medium;\">同义词:"
for synonym in w.synonym
back *= "<div style=\"text-align: left;margin-left: 5%;\">"
back *= "<span>" * synonym.first * " </span>"
if length(synonym.second) > 1
for syn in synonym.second[1:end - 1]
back *= "<a href=\"" * syn["synonym link"] * "\">" * syn["synonym"] * "</a><span>,</span>"
end
end
back *= "<a href=\"" * synonym.second[end]["synonym link"] * "\">" * synonym.second[end]["synonym"] * "</a>"
back *= "</div>"
end
back *= "</div>"
end
if length(w.antonym) > 0
back *= "<div style=\"text-align: left;margin-left: 5%;font-size: medium;\">反义词:"
for antonym in w.antonym
back *= "<div style=\"text-align: left;margin-left: 5%;\">"
back *= "<span>" * antonym.first * " </span>"
if length(antonym.second) > 1
for ant in antonym.second[1:end - 1]
back *= "<a href=\"" * ant["antonym link"] * "\">" * ant["antonym"] * "</a><span>,</span>"
end
end
back *= "<a href=\"" * antonym.second[end]["antonym link"] * "\">" * antonym.second[end]["antonym"] * "</a>"
back *= "</div>"
end
back *= "</div>"
end
back *= "<br><div style=\"text-align: left;margin-left: 5%;\">权威英汉双解"
for aurth in w.Authoritative_English_Chinese_Dual_Explanation
back *= "<div style=\"text-align: left;margin-left: 5%;\"><a>" * aurth.first * "</a>"
if "Exp" in keys(aurth.second)
i = 1
for Exp in aurth.second["Exp"]
try
back *= "<div style=\"text-align: left;margin-left: 5%;font-size: large;\"><a>" * Exp["summary CN"] * " </a><a>" * Exp["summary EN"] * "</a></div>"
catch
back *= "<div style=\"text-align: left;margin-left: 5%;font-size: medium;\">" * "<span>$(i). </span>"
back *= "<span style=\"color: red;\">$(Exp["info"])</span>"
back *= "<span>$(Exp["pattern"]) </span>"
back *= "<span>$(Exp["detail CN"]) </span>"
back *= "<span>$(Exp["detail EN"])</span>"
back *= "</div>"
i += 1
end
end
end
if "IDM" in keys(aurth.second)
back *= "<br><div style=\"text-align: left;border: groove;margin-left: 5%;\"><a>IDM</a>"
for IDM in aurth.second["IDM"]
back *= "<div style=\"font-size: large; margin-left: 5%;\"><a>$(IDM["IDM"])</a>"
back *= "<div style=\"font-size: medium; margin-left: 5%;\"><span>$(IDM["meaning CN"]) </span><span>$(IDM["meaning EN"]) </span><span style=\"color: red;\">$(IDM["infor"])</span></div>"
back *= "</div>"
end
back *= "</div>"
end
back *= "</div>"
end
back *= "</div>"
back *= "<br><div style=\"text-align: left;margin-left: 5%;\">例句"
for sentence in w.sentence
back *= "<div style=\"font-size: medium; margin-left: 5%;\">"
back *= "<div>"
for word in sentence["EN"]
try
back *= "<a href=\"" * word["link"] * "\">" * word["word"] * "</a>"
catch
back *= "<span>$(word["word"])</span>"
end
end
back *= "</div>"
back *= "<div>"
for word in sentence["CN"]
try
back *= "<a href=\"" * word["link"] * "\">" * word["word"] * "</a>"
catch
back *= "<span>$(word["word"])</span>"
end
end
try
back *= "<a href=\"$(sentence["audio"][1]["audio link"])\">$(sentence["audio"][1]["audio source"])</a>[sound:$(sentence["audio"][2]["audio"])]"
catch
back *= "[sound:$(sentence["audio"][1]["audio"])]"
end
back *= "</div>"
back *= "</div>"
end
back *= "</div>"
return [w.word,front,source,back]
end