aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mlg.c
diff options
context:
space:
mode:
Diffstat (limited to 'mlg.c')
-rw-r--r--mlg.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/mlg.c b/mlg.c
index 059542c6..9194b3b6 100644
--- a/mlg.c
+++ b/mlg.c
@@ -1,4 +1,4 @@
-/* $Id: mlg.c,v 1.11 2008/12/05 19:45:15 kristaps Exp $ */
+/* $Id: mlg.c,v 1.12 2008/12/05 22:34:30 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -447,6 +447,17 @@ mlg_roffspecial(void *arg, int tok, const char *start, char **more)
return(0);
break;
case (ROFF_Fn):
+ abort(); /* TODO */
+ break;
+ case (ROFF_Nm):
+ assert(*more);
+ if ( ! mlg_begintag(p, MD_NS_INLINE, tok, NULL, NULL))
+ return(0);
+ if ( ! ml_puts(p->mbuf, *more++, &p->pos))
+ return(0);
+ assert(NULL == *more);
+ if ( ! mlg_endtag(p, MD_NS_INLINE, tok))
+ return(0);
break;
case (ROFF_Ns):
p->flags |= ML_OVERRIDE_ONE;