https://github.com/shortarrow/poc_pandoc_jp
pandoc japanese
https://github.com/shortarrow/poc_pandoc_jp
docker pandoc
Last synced: 16 days ago
JSON representation
pandoc japanese
- Host: GitHub
- URL: https://github.com/shortarrow/poc_pandoc_jp
- Owner: ShortArrow
- Created: 2024-12-03T06:28:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-10T08:29:40.000Z (over 1 year ago)
- Last Synced: 2025-12-25T22:41:43.921Z (6 months ago)
- Topics: docker, pandoc
- Language: Dockerfile
- Homepage: https://github.com/ShortArrow/poc_pandoc_jp/pkgs/container/poc_pandoc_jp
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PoC pandoc japanese
## Usage
```powershell
docker pull ghcr.io/shortarrow/poc_pandoc_jp:latest
```
```powershell
docker run -it --rm --volume ${pwd}/example:/data `
ghcr.io/shortarrow/poc_pandoc_jp:latest
-N $InputMd `
-o $OutputMd `
-d /config/pandoc.config.yaml `
-H /config/listings-setup.tex `
--resource-path "/data/" `
--verbose
``````
## Example
```powershell
./build.ps1
./mdtopdf.ps1 -InputMd example.md -OutputMd example.pdf
```
## Debug
```powershell
git clone https://github.com/shortarrow/poc_pandoc_jp
cd poc_pandoc_jp
docker build . -t poc_pandoc_jp
docker run -it --rm --volume ${pwd}/example:/data --entrypoint "/bin/bash" poc_pandoc_jp
```