Skip to content

Commit

Permalink
fix tabs in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rreece committed Dec 26, 2023
1 parent 8575ac5 commit a47a4d1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
22 changes: 11 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ newdoc: destroy destroygit

install_for_ubuntu:
@echo "Installing for ubuntu..." ; \
sudo apt-get -y update ; \
sudo apt-get -y update ; \
if [ ! -f /usr/bin/pdflatex ]; then \
echo "Installing texlive..." ; \
sudo apt-get -y install texlive-latex-extra ; \
sudo apt-get -y install texlive-latex-extra ; \
fi ; \
echo "which pdflatex: `which pdflatex`" ; \
if [ ! -f /usr/bin/pandoc ]; then \
Expand All @@ -176,12 +176,12 @@ install_for_ubuntu:
pandoc --version ; \
if [ ! -f /usr/local/bin/pandoc-crossref ]; then \
echo "Installing pandoc-crossref..." ; \
wget -c https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.10.0a/pandoc-crossref-Linux.tar.xz ; \
tar -xf pandoc-crossref-Linux.tar.xz ; \
sudo mv pandoc-crossref /usr/local/bin/ ; \
sudo chmod a+x /usr/local/bin/pandoc-crossref ; \
sudo mkdir -p /usr/local/man/man1 ; \
sudo mv pandoc-crossref.1 /usr/local/man/man1 ; \
wget -c https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.10.0a/pandoc-crossref-Linux.tar.xz ; \
tar -xf pandoc-crossref-Linux.tar.xz ; \
sudo mv pandoc-crossref /usr/local/bin/ ; \
sudo chmod a+x /usr/local/bin/pandoc-crossref ; \
sudo mkdir -p /usr/local/man/man1 ; \
sudo mv pandoc-crossref.1 /usr/local/man/man1 ; \
fi ; \
echo "which pandoc-crossref: `which pandoc-crossref`" ; \
echo "Installing other dependencies..." ; \
Expand Down Expand Up @@ -214,9 +214,9 @@ install_for_mac:
if [ ! -f /usr/local/bin/pandoc-crossref ]; then \
echo "Installing pandoc-crossref..." ; \
wget -c https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.10.0a/pandoc-crossref-macOS.tar.xz ; \
tar -xf pandoc-crossref-macOS.tar.xz ; \
sudo mv pandoc-crossref /usr/local/bin/ ; \
sudo chmod a+x /usr/local/bin/pandoc-crossref ; \
tar -xf pandoc-crossref-macOS.tar.xz ; \
sudo mv pandoc-crossref /usr/local/bin/ ; \
sudo chmod a+x /usr/local/bin/pandoc-crossref ; \
fi ; \
echo "which pandoc-crossref: `which pandoc-crossref`" ; \
echo "Installing other dependencies..." ; \
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# markdown-easy

markdown-easy
===========================

[![CI badge](https://github.com/rreece/markdown-easy/actions/workflows/ci.yml/badge.svg)](https://github.com/rreece/markdown-easy/actions)
Expand All @@ -20,8 +19,7 @@ You don't want to think about typesetting details.
You just want to throw your ideas in some plain text files and call `make`.


## Quick start

Quick start
----------------------------------

Installation:
Expand Down

0 comments on commit a47a4d1

Please sign in to comment.