Skip to content

RCS-167/Pandoc-Service

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pandoc Service

Build the Docker Image

git clone git@github.com:elmsln/Pandoc-Service.git
cd Pandoc-Service
docker build -t pandoc-service .

Usage

Linux / Windows PowerShell:

docker run -it --rm -v "$(pwd):/src" pandoc-service <input-filename>.html -s -o <output-filename>.md

Linux / Windows PowerShell Example:

docker run -it --rm -v "$(pwd):/src" pandoc-service ./tests/pandochtmltest.html -s -o ./tmp/output.md

Windows Command Line:

docker run -it --rm -v "%cd%:/src" pandoc-service "<input-filename>.html" -s -o "<output-filename>.md"

Windows Command Line Example:

docker run -it --rm -v "%cd%:/src" pandoc-service "./tests/pandochtmltest.html" -s -o "./tmp/output.md"

Linux / Windows PowerShell convert and move file location:

docker run -it --rm -v "$(pwd):/src" pandoc-service <input-filename>.html -s -o <output-filename>.md | mv <output-filename> <new/file/location>

FAAS Resources

What is function as a service?

Here are some similar projects of this type?

About

Student lead Pandoc docker service w/ intention of deploying as add on to HAX

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • HTML 67.3%
  • Dockerfile 32.7%