Sahal Ansari
|
cd90135cce
|
Updated table formatting, call-outs, html comments, improper escapes.
|
2024-10-07 23:00:17 -05:00 |
|
flokoe
|
9144160ae5
|
Fix link to old bash hackers wiki
|
2024-04-02 23:36:57 +02:00 |
|
flokoe
|
45b56ae6c6
|
Fix "relative links target not found" warnings
|
2024-04-02 23:19:23 +02:00 |
|
flokoe
|
9b7adabbaf
|
Fix unrecognized relative links
|
2024-04-02 21:36:43 +02:00 |
|
coronary
|
99161c5fa3
|
format(docs): replace escaped special characters
|
2024-03-31 23:10:32 -05:00 |
|
Vera De Kalb
|
4166a76a00
|
format(docs): remove escaped t's
|
2024-03-30 14:09:26 -05:00 |
|
Vera De Kalb
|
a0a82533bc
|
format(docs): remove escaped 's character pairs
|
2024-03-30 13:22:45 -05:00 |
|
Florian Köhler
|
93e24b5962
|
Merge pull request #15 from hansonchar/linkfix-depth3
Fix hyperlinks of markdown pages at depth 3
|
2024-02-03 12:38:53 +01:00 |
|
Hanson Char
|
b75c3a588b
|
Fix hyperlinks of markdown pages at depth 3
find docs/ -depth 3 -name '*.md' | xargs grep '(.*/' -l | \
xargs -I{} \
sed -i '' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../../\1/\2.md)%g' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([a-zA-Z_-][0-9a-zA-Z_-]*\))%(../../\1/\2.md#\3)%g' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../../\1/\2/\3.md)%g' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([a-zA-Z_-][0-9a-zA-Z_-]*\))%(../../\1/\2/\3.md#\4)%g' \
-e 's%](\([^:.>)#][^:.>)#]*\))%](../../\1.md)%g' \
-e 's%](\([^:.>)#][^:.>)#]*\)#\([^:.>)#][^:.>)#]*\))%](../../\1.md#\2)%g' \
{}
Related to https://github.com/flokoe/bash-hackers-wiki/issues/10
|
2024-01-28 17:26:57 -08:00 |
|
Hanson Char
|
e966036f05
|
Fix hyperlinks of markdown pages at depth 2
find docs/ -depth 2 -name '*.md' | xargs grep '(.*/' -l | \
xargs -I{} \
sed -i '' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../\1/\2.md)%g' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([0-9a-zA-Z_-][0-9a-zA-Z_-]*\))%(../\1/\2.md#\3)%g' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../\1/\2/\3.md)%g' \
-e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([0-9a-zA-Z_-][0-9a-zA-Z_-]*\))%(../\1/\2/\3.md#\4)%g' \
-e 's%](\([^:.>)#][^:.>)#]*\))%](../\1.md)%g' \
-e 's%](\([^:.>)#][^:.>)#]*\)#\([^:.>)#][^:.>)#]*\))%](../\1.md#\2)%g' \
{}
Related to https://github.com/flokoe/bash-hackers-wiki/issues/10
|
2024-01-28 17:26:10 -08:00 |
|
flokoe
|
1406408dff
|
Convert all builtin commands to Markdown
|
2023-07-05 10:53:12 +02:00 |
|
flokoe
|
f79b5314b2
|
Fix Markdown formatting for classictest.md
|
2023-07-04 18:11:00 +02:00 |
|
flokoe
|
505673ba61
|
Convert classic test command to Markdown
|
2023-07-04 15:59:53 +02:00 |
|