Commit graph

9 commits

Author SHA1 Message Date
0bc255d184 articles/golang.md: update article 2025-02-28 19:11:34 -03:00
a7f15ae090 articles/golang.md: update 2025-02-17 18:15:55 -03:00
051ba715e1 articles/golang.md: update 2025-02-13 13:38:21 -03:00
d974efb915 articles/golang.md: remove extra semicolon 2025-02-12 00:50:37 -03:00
cce3bf40dd articles/golang.md: factorial example 2025-02-11 15:11:28 -03:00
cb69c5d301 rewrite articles urls, once again
change the html extension to md
2025-02-08 21:29:57 -03:00
02e5298b51 rewrite urls again
```
find articles -type f -name '*.md' -exec \
    perl -pi -e 's/\[([^]]+)\]\(articles\/([a-zA-Z0-9\/_.-]+)\)/\[\1\]\(\2\)/g' {} \;
```
2025-02-08 21:10:28 -03:00
4b17ce4782 rewrite articles urls
Probably I will never have a VPS so this wiki will live in a git
repository only. To make the article urls work properly so the
wiki can be browsed, I removed the leading `/`.

For the record, this is what I used (sed could have done the job too):
```
find articles -type f -name '*.md' -exec \
  perl -pi -e 's/\[([^]]+)\]\(\/([a-zA-Z0-9\/_.-]+)\)/\[\1\]\(\2\)/g' {} \;
````
2025-02-08 21:01:45 -03:00
f8869cb84e initial commit 2025-02-08 18:36:18 -03:00