diff --git a/src/_header.html b/src/_header.html index 18c578a..e6542fe 100644 --- a/src/_header.html +++ b/src/_header.html @@ -16,16 +16,16 @@ PAGE CODED BY : - + - + - + diff --git a/src/aoc-2021-jour-0-commencement.md b/src/aoc-2021-jour-0-commencement.md index 10710d6..af03c83 100644 --- a/src/aoc-2021-jour-0-commencement.md +++ b/src/aoc-2021-jour-0-commencement.md @@ -1,6 +1,6 @@ # AoC 2021 Jour 0: Commencement -> Le début d'une grande aventure ! +Le début d'une grande aventure ! Cette année, j'ai découvert l'[Advent Of Code](https://adventofcode.com/). Ce site géré de manière bénévole par [Eric Wastl](http://was.tl/) sur son temps diff --git a/src/git_flow.md b/src/git_flow.md index cc3a044..f5c7706 100644 --- a/src/git_flow.md +++ b/src/git_flow.md @@ -1,11 +1,11 @@ # Git Workflow +Git est un outil de versionnage très utile, voici comment je m'en sers. + > À noter que ce guide est destiné aux personnes qui ont déjà utilisé git auparavant, > il ne s'agit pas ici d'un tutoriel pour débutants (bien que je sois ici assez > exhaustif dans mes explications). -Git est un outil de versionnage très utile, voici comment je m'en sers. - [TL;DR](#TL;DR) ## Les fondations diff --git a/src/index.md b/src/index.md index b85d42f..c027bdf 100644 --- a/src/index.md +++ b/src/index.md @@ -1,5 +1,7 @@ #### Articles +Un blog on ne peut plus simple. + - [Advent of Code 2021 Jour 0 : le commencement](./aoc-2021-jour-0-commencement.html) - *17/01/2022* - [Git workflow](./git_flow.html) - *10/05/2021* diff --git a/ssg5 b/ssg5 index 745d9fc..b5a2d4f 100755 --- a/ssg5 +++ b/ssg5 @@ -188,13 +188,12 @@ render_html_files() { render_md_files_lowdown() { - # Check if the previous file has a date in it while read -r f do lowdown \ --html-no-skiphtml \ --html-no-escapehtml < "$1/$f" | - render_html_file "$3" > "$2/${f%\.md}.html" + render_html_file "$3" "$(head -n 3 ${1}/${f} | tail -n 1)" > "$2/${f%\.md}.html" done } @@ -211,7 +210,8 @@ render_md_files_Markdown_pl() { render_html_file() { # h/t Devin Teske - awk -v title="$1" ' + # TODO IMPROVE THIS IF POSSIBLE + awk -v title="${1}" -v brief="${2}" ' { body = body "\n" $0 } END { body = substr(body, 2) @@ -239,6 +239,18 @@ render_html_file() { head = substr(header[i], 1, RSTART - 1) tail = substr(header[i], RSTART + RLENGTH) print head "