Commit graph

10 commits

Author SHA1 Message Date
3b8fbf5959 articles/pascal.md: update 2025-02-17 12:01:57 -03:00
75b7822721 articles/pascal.md: update 2025-02-17 00:58:19 -03:00
e6782ebbcd articles/pascal.md: update 2025-02-17 00:33:59 -03:00
b85f719ae9 articles/pascal.md: update 2025-02-17 00:14:14 -03:00
677467e04c articles/pascal.md: update 2025-02-15 13:03:36 -03:00
f9c2fa55b0 pascal.md: update 2025-02-10 17:33:54 -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