Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
PANDOC ?= pandoc -f gfm -H _head.html -A _foot.html -T "nREPL Protocol"

index.html: spec.md _head.html _foot.html
$(PANDOC) -i spec.md > $@
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# nREPL Protocol Spec

This repository contains the documentation for the nREPL protocol. In
order to avoid breaking existing links, the top-level nrepl.org domain
documents the original Clojure server implementation, and all the
general cross-language details are meant to go here.

Except where otherwise noted, nrepl.org is licensed under the Creative
Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
6 changes: 6 additions & 0 deletions _foot.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<p>Except where otherwise noted, nrepl.org is licensed under the
<a href="https://creativecommons.org/licenses/by/4.0/">Creative
Commons Attribution-ShareAlike 4.0 International</a> (CC BY-SA 4.0)
license.</p>
<p>© 2025 nREPL contributors |
<a href="https://github.com/nrepl/spec.nrepl.org">site source</a></p>
3 changes: 3 additions & 0 deletions _head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<style type="text/css">body{margin:40px auto; text-align: justify;
max-width:650px;line-height:1.6;font-size:18px;color:#444;padding:0
10px}h1,h2,h3{line-height:1.2}</style>
Loading