We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38fccc0 commit 00f22bcCopy full SHA for 00f22bc
.gitignore
@@ -1,4 +1,6 @@
1
jsonschema-*.html
2
+jsonschema-*.pdf
3
jsonschema-*.txt
4
relative-json-pointer.html
5
+relative-json-pointer.pdf
6
relative-json-pointer.txt
Makefile
@@ -11,10 +11,14 @@ all: $(OUT)
11
%.txt: %.xml
12
$(XML2RFC) --text $< -o $@
13
14
+%.pdf: %.xml
15
+ $(XML2RFC) --pdf $< -o $@
16
+
17
%.html: %.xml
18
$(XML2RFC) --html $< -o $@
19
20
json-schema.tar.gz: $(OUT)
21
+ test ! -e json-schema
22
mkdir json-schema
23
git clone . json-schema
24
(cd json-schema && make)
0 commit comments