aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdocml.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-11-23 11:05:25 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-11-23 11:05:25 +0000
commitbc1f888442506beff42aef9a1323608f27d21077 (patch)
treed40d668515c6ea054a071185aa305d56508f453e /mdocml.c
parentf7c6d11f272cc0ec57ca0edce234d8aef453f9b5 (diff)
downloadmandoc-bc1f888442506beff42aef9a1323608f27d21077.tar.gz
mandoc-bc1f888442506beff42aef9a1323608f27d21077.tar.zst
mandoc-bc1f888442506beff42aef9a1323608f27d21077.zip
Initial foray into roff-parsing.
Diffstat (limited to 'mdocml.c')
-rw-r--r--mdocml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdocml.c b/mdocml.c
index 2f3e95d8..99cdc120 100644
--- a/mdocml.c
+++ b/mdocml.c
@@ -1,4 +1,4 @@
-/* $Id: mdocml.c,v 1.5 2008/11/22 20:15:34 kristaps Exp $ */
+/* $Id: mdocml.c,v 1.6 2008/11/23 11:05:25 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -71,7 +71,7 @@ main(int argc, char *argv[])
if (1 == argc)
in = *argv++;
- args.type = MD_DUMMY;
+ args.type = MD_HTML4_STRICT;
return(begin_io(&args, out ? out : "-", in ? in : "-"));
}