Parse links in work experiences

This commit is contained in:
Arnaud Ysmal 2021-03-01 14:45:06 +01:00
parent 2ebeb99974
commit 95fed110c1
6 changed files with 12 additions and 12 deletions

File diff suppressed because one or more lines are too long

View File

@ -63,10 +63,10 @@
<ul class="list-group">
{{range .Highlights -}}
<li class="list-group-item">
{{.Title}}
{{md2html .Title}}
{{if .Items -}}
<ul>
{{range .Items}}<li>{{.}}</li>{{end}}
{{range .Items}}<li>{{md2html .}}</li>{{end}}
</ul>
{{- end}}
</li>

File diff suppressed because one or more lines are too long

View File

@ -62,10 +62,10 @@
<ul class="list-group">
{{range .Highlights -}}
<li class="list-group-item">
{{.Title}}
{{md2html .Title}}
{{if .Items -}}
<ul>
{{range .Items}}<li>{{.}}</li>{{end}}
{{range .Items}}<li>{{md2html .}}</li>{{end}}
</ul>
{{- end}}
</li>

View File

@ -163,10 +163,10 @@
{{if $w.Highlights -}}
<ul class="highlights">
{{range $w.Highlights -}}
<li>{{.Title}}
<li>{{md2html .Title}}
{{if .Items -}}
<ul>
{{range .Items}}<li>{{.}}</li>{{end}}
{{range .Items}}<li>{{md2html .}}</li>{{end}}
</ul>
{{- end}}
</li>

File diff suppressed because one or more lines are too long