https://github.com/arnauld/gutenberg
When PDF (itext) meets Markdown, Ditaa, and others
https://github.com/arnauld/gutenberg
Last synced: about 1 year ago
JSON representation
When PDF (itext) meets Markdown, Ditaa, and others
- Host: GitHub
- URL: https://github.com/arnauld/gutenberg
- Owner: Arnauld
- License: mit
- Created: 2014-08-04T22:36:02.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T21:50:49.000Z (over 7 years ago)
- Last Synced: 2025-04-05T22:31:55.894Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 1.38 MB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Pygments
--------
* How to use from java (through jython): [here](http://pygments.org/docs/java/)
* Available lexers: [here](http://pygments.org/docs/lexers/)
* Custom Formatter: [here](http://pygments.org/docs/formatterdevelopment/)
Release
-------
First check for **snapshot** dependencies:
```bash
fgrep SNAPSHOT **/pom.xml
```
[Maven Release Plugin: The Final Nail in the Coffin](http://axelfontaine.com/blog/final-nail.html)
```bash
mvn versions:set -DnewVersion=1.0.1
mvn clean deploy scm:tag -Psign-artifacts
git status
git add .
git commit -m "gutenberg 1.0.1"
mvn versions:set -DnewVersion=1.0.2-SNAPSHOT
git add .
git commit -m "gutenberg 1.0.2-snapshot"
git push
```