Compare commits

..

3 Commits

Author SHA1 Message Date
a9bea74e4d add generated pdf 2023-07-04 13:54:51 +05:00
5e5ee35673 add generated html 2023-07-04 13:53:05 +05:00
d684f5fa54 generate html in style 2023-07-04 13:50:35 +05:00
4 changed files with 8 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1 +0,0 @@
*.pdf

View File

@@ -1,3 +1,4 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<h1 id="f.dharanboodhoo-gpon-project">F.Dharanboodhoo GPON Project</h1> <h1 id="f.dharanboodhoo-gpon-project">F.Dharanboodhoo GPON Project</h1>
<h2 id="purpose">Purpose</h2> <h2 id="purpose">Purpose</h2>
<p>Establishing the infrastructure required to provide telecom <p>Establishing the infrastructure required to provide telecom

Binary file not shown.

View File

@@ -1,3 +1,9 @@
#!/bin/bash #!/bin/bash
pandoc -f markdown -t html proposal.md -o FDharanboodhoo_GPON_Proposal.html FILE=FDharanboodhoo_GPON_Proposal.html
rm -v $FILE
pandoc -f markdown -t html proposal.md -o $FILE
echo '<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">' \
| cat - $FILE > temp && mv temp $FILE