Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmonks/bookmark-writer
A simple and dumb Clojure library that provides the ability to set the text values of bookmarks in Word 2007 (.docx) format files.
https://github.com/pmonks/bookmark-writer
Last synced: 29 days ago
JSON representation
A simple and dumb Clojure library that provides the ability to set the text values of bookmarks in Word 2007 (.docx) format files.
- Host: GitHub
- URL: https://github.com/pmonks/bookmark-writer
- Owner: pmonks
- License: epl-1.0
- Created: 2014-01-10T01:55:10.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T04:42:31.000Z (about 6 years ago)
- Last Synced: 2023-03-30T05:31:15.329Z (over 1 year ago)
- Language: Java
- Size: 84 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.com/pmonks/bookmark-writer.svg?branch=master)](https://travis-ci.com/pmonks/bookmark-writer)
[![Dependencies Status](http://jarkeeper.com/pmonks/bookmark-writer/status.svg)](http://jarkeeper.com/pmonks/bookmark-writer)# bookmark-writer
A simple and dumb Clojure library that provides the ability to set the text values of bookmarks in Word 2007 (.docx) format files.
Little more than a Clojure wrapper around [this docx4j sample class](https://github.com/plutext/docx4j/blob/master/src/samples/docx4j/org/docx4j/samples/BookmarksReplaceWithText.java).## Installation
`bookmark-writer` is available as a Maven artifact from [Clojars](https://clojars.org/org.clojars.pmonks/bookmark-writer):
[![version](https://clojars.org/org.clojars.pmonks/bookmark-writer/latest-version.svg)](https://clojars.org/org.clojars.pmonks/bookmark-writer)
## Usage
The library's functionality is provided in the `bookmark-writer.core` namespace.
Require it in the REPL:
```clojure
(require '[bookmark-writer.core :as bm])
```Require it in your application:
```clojure
(ns my-app.core
(:require [bookmark-writer.core :as bm]))
```TODO: provide example usage instructions.
## Developer Information
[GitHub project](https://github.com/pmonks/bookmark-writer)
[Bug Tracker](https://github.com/pmonks/bookmark-writer/issues)
[![endorse](https://api.coderwall.com/pmonks/endorsecount.png)](https://coderwall.com/pmonks)
## License
Copyright © 2013 Peter Monks ([email protected])
Distributed under the [Eclipse Public License](http://www.eclipse.org/legal/epl-v10.html) either version 1.0 or (at your option) any later version.