~dricottone/blog

ref: bd12a2fbd087ad63213370041065c3532548d93a blog/scripts/cv_html.awk -rwxr-xr-x 3.4 KiB
bd12a2fbDominic Ricottone Automated generation of HTML CV based on Markdown CV 2 years ago
                                                                                
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
147
148
149
#!/bin/awk -f

function end_section() {
  print "</ul>";
  in_section=0;
}

function end_subsection() {
  print "</li>";
  in_subsection=0;
}

function end_paragraph() {
  print "</p>";
  in_paragraph=0;
}

function end_bullets() {
  print "</ul>";
  in_bullets=0;
}

function end_subbullets() {
  print "</ul>";
  in_subbullets=0;
}

BEGIN {
  ignore=1;
  in_section=0;
  in_subsection=0;
  in_bullets=0;
  in_subbullets=0;
  in_paragraph=0;

  print "<!doctype html>";
  print "<html lang=\"en\">";
  print "<head>";
  print "<meta charset=\"utf-8\" name=\"viewport\" content=\"width=device-width, initial-scale=1\">";
  print "<title>CV | Dominic Ricottone</title>";
  print "</head>";
  print "<body>";
  print "<main>";
  print "<h1>Dominic Ricottone</h1>";
}

{
  if (ignore==0) {

    gsub("&","\\&amp;");
    gsub("'","\\&rsquo;");

    if ($0 ~ /^## /) {
      if (in_paragraph==1) end_paragraph();
      if (in_subbullets==1) end_subbullets();
      if (in_bullets==1) end_bullets();
      if (in_subsection==1) end_subsection();
      if (in_section==1) end_section();

      print "<h2>" substr($0,4) "</h2>";
    }

    # start of a section (which is a pair of a paragraph and an unordered list)
    else if ($0 ~ /^### /) {
      if (in_paragraph==1) end_paragraph();
      if (in_subbullets==1) end_subbullets();
      if (in_bullets==1) end_bullets();
      if (in_subsection==1) end_subsection();
      if (in_section==1) end_section();

      print "<h3>" substr($0,5) "</h3>";
      in_section=1;
    }

    # start of a subsection (which is a list item)
    else if ($0 ~ /^ \+ #### /) {
      if (in_paragraph==1) end_paragraph();
      if (in_subbullets==1) end_subbullets();
      if (in_bullets==1) end_bullets();
      if (in_subsection==1) end_subsection();
      else print "<ul>";

      print "<li>";
      print "<h4>" substr($0,9) "</h4>";
      in_subsection=1;
    }

    # bullets (may be start of or a member of)
    else if ($0 ~ /^   \+ /) {
      if (in_paragraph==1) end_paragraph();
      if (in_subbullets==1) end_subbullets();

      if (in_bullets==0) print "<ul>";
      sub(/ +\+ /,"");
      print "<li>" $0 "</li>";
      in_bullets=1;
    }

    # subbullets (may be start of or a member of)
    else if ($0 ~ /^     \+ /) {
      if (in_paragraph==1) end_paragraph();

      if (in_subbullets==0) print "<ul>";
      sub(/ +\+ /,"");
      print "<li>" $0 "</li>";
      in_subbullets=1;
    }

    # blank line (end of paragraphs)
    else if ($0 ~ /^$/) {
      if (in_paragraph==1) end_paragraph();
      if (in_subbullets==1) end_subbullets();
      if (in_bullets==1) end_bullets();
    }

    # horizontal rules (also end of paragraphs)
    else if ($0 ~ /^-----+$/) {
      if (in_paragraph==1) end_paragraph();
      if (in_subbullets==1) end_subbullets();
      if (in_bullets==1) end_bullets();
      if (in_subsection==1) end_subsection();
      if (in_section==1) end_section();

      print "<hr />";
    }

    # paragraphs
    else {
      sub(/^ *\*/,"<em>");
      sub(/\*$/,"</em>");
      if (in_paragraph==0) print "<p>" $0;
      else print $0;
      in_paragraph=1;
    }
  }
  else if ($0 ~ /Ignore above content for PDF and HTML versions/) ignore=0;
}

END {
  if (in_paragraph==1) end_paragraph();
  if (in_subbullets==1) end_subbullets();
  if (in_bullets==1) end_bullets();
  if (in_subsection==1) end_subsection();
  if (in_section==1) end_section();

  print "</main>";
  print "</html>";
}