You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
2.2 KiB
Bash
36 lines
2.2 KiB
Bash
#!/bin/sh
|
|
|
|
# Script for new posts
|
|
|
|
FILE=/tmp/sufyaan-website-post$(date +%d).md
|
|
|
|
echo '- [ ] Linux\n- [ ] Software\n- [ ] Technology\n- [ ] Design\n- [ ] Guides\n- [ ] Literary\n- [ ] Other' > $FILE
|
|
nvim $FILE
|
|
CATSTR="$(grep 'X' $FILE | cut -d' ' -f3 | tr -d \\n | sed 's/[A-Z]/ \&\& &/g')"
|
|
CATFIN="$(echo $CATSTR | cut --complement -d' ' -f1 | sed 's/\(Linux\|Software\|Technology\|Design\|Guides\|Literary\|Other\)/<a style="color:#ff79c6" href="..\/blog\/&\/"><strong>&<\/strong><\/a>/g' | sed 's/\/blog\/\(Linux\|Software\|Technology\|Design\|Guides\|Literary\|Other\)/\L&/g' | sed 's/\//\\\//g' | sed 's/\&\&/\\\&\\\&/g')"
|
|
POSTED=$(date +'%d %B %Y')
|
|
read -p "Enter post title: " TITLE
|
|
read -p "Enter post relative URL: " URL
|
|
read -p "Enter reading time: " READ
|
|
read -p "Enter previous post: " PREVPOST
|
|
EMAIL=$(echo $TITLE | sed 's/ /%20/g')
|
|
|
|
cd ~/docs/sys/gits/sufyaan-website
|
|
mkdir -p $URL
|
|
cp template.html $URL/index.html
|
|
|
|
# Replacing placeholders with values in new post
|
|
sed -i "s/POST TITLE/$TITLE/g" $URL/index.html
|
|
sed -i "s/POST DATE/$POSTED/g" $URL/index.html
|
|
sed -i "s/READING/$READ/g" $URL/index.html
|
|
sed -i "s/MAILSUBJECT/$EMAIL/g" $URL/index.html
|
|
sed -i "s/URL/$URL/g" $URL/index.html
|
|
sed -i "s/PREVIOUSPOST/$PREVPOST/g" $URL/index.html
|
|
sed -i "s/POSTCATEGORIES/$CATFIN/g" $URL/index.html
|
|
ORIGINALFOOTER="<a style='color:#bd93f9' href='..\/terminal\/'>First Post<\/a> <svg class='footer-posts' xmlns='http:\/\/www.w3.org\/2000\/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='#bd93f9' fill-rule='evenodd' d='M2.232 12.207a.75.75 0 0 1 1.06.025l3.958 4.146V6.375a5.375 5.375 0 0 1 10.75 0V9.25a.75.75 0 0 1-1.5 0V6.375a3.875 3.875 0 0 0-7.75 0v10.003l3.957-4.146a.75.75 0 0 1 1.085 1.036l-5.25 5.5a.75.75 0 0 1-1.085 0l-5.25-5.5a.75.75 0 0 1 .025-1.06Z' clip-rule='evenodd'\/><\/svg><\/p>"
|
|
NEWFOOTER="<a style='color:#bd93f9' href=\"..\/$URL\/\">Next Post<\/a> <svg class='footer-posts' xmlns='http:\/\/www.w3.org\/2000\/svg' viewBox='0 0 48 48'><mask id='ipSRightOne0'><path fill='#fff' stroke='#fff' stroke-linejoin='round' stroke-width='4' d='m20 12l12 12l-12 12V12Z'\/><\/mask><path fill='#bd93f9' d='M0 0h48v48H0z' mask='url\(\#ipSRightOne0\)'\/><\/svg><\/p>"
|
|
sed -i "s/$ORIGINALFOOTER/$NEWFOOTER/g" $PREVPOST/index.html
|
|
|
|
# Removing temporary file
|
|
rm $FILE
|