diff options
| author | Asko Nomm <asko@bien.ee> | 2022-04-06 13:43:59 +0200 |
|---|---|---|
| committer | Asko Nomm <asko@bien.ee> | 2022-04-06 13:43:59 +0200 |
| commit | 2072d2730e0a7991bdf6474275f9fe9cd8fac182 (patch) | |
| tree | f2f2e4190d38edafbac730487839adf356fa7149 /README.md | |
| parent | 3770175783d53f9008d81dca8b19741b218d925f (diff) | |
Fixes list blocks, which can now be of any depth and should work just fine.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 26 |
1 files changed, 8 insertions, 18 deletions
@@ -1,22 +1,12 @@ -# clarktown +# Clarktown -A Clojure library designed to ... well, that part is up to you. +A zero-dependency Markdown parser for Clojure projects. -## Usage +## Usage example -FIXME +```clojure +(ns myapp.core + (:require [clarktown.core :as clarktown])) -## License - -Copyright © 2021 FIXME - -This program and the accompanying materials are made available under the -terms of the Eclipse Public License 2.0 which is available at -http://www.eclipse.org/legal/epl-2.0. - -This Source Code may also be made available under the following Secondary -Licenses when the conditions for such availability set forth in the Eclipse -Public License, v. 2.0 are satisfied: GNU General Public License as published by -the Free Software Foundation, either version 2 of the License, or (at your -option) any later version, with the GNU Classpath Exception which is available -at https://www.gnu.org/software/classpath/license.html. +(clarktown/render "**Hello, world!**") +```
\ No newline at end of file |
