initial commit

This commit is contained in:
Jose Falanga 2025-09-08 17:38:31 -03:00
commit 9df80bf3d3
62 changed files with 3401 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#!/bin/bash
#############
# DESCRIPTION
#############
# Clears the metadata variables to prevent metadata from carrying over to the wrong page. This is important because of how promiscuous bash is with its variables.
#
#############
# Usage:
# clear_metadata
clear_metadata() {
metadata=''
title=''
author=''
description=''
language=''
thumbnail=''
published_date=''
modified_date=''
relative_url=''
canonical_url=''
}