15 lines
167 B
Bash
Executable File
15 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
formatting() {
|
|
cat <<EOF
|
|
---
|
|
title: $1
|
|
documentclass: report
|
|
linkcolor: blue
|
|
geometry: margin=1in
|
|
---
|
|
EOF
|
|
}
|
|
|
|
formatting $1 > /tmp/mdformatting.md
|