diff options
Diffstat (limited to 'printing/ppvernac.mli')
-rw-r--r-- | printing/ppvernac.mli | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/printing/ppvernac.mli b/printing/ppvernac.mli new file mode 100644 index 00000000..f38848cd --- /dev/null +++ b/printing/ppvernac.mli @@ -0,0 +1,20 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2015 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +(** This module implements pretty-printers for vernac_expr syntactic + objects and their subcomponents. *) + +(** The default pretty-printers produce {!Pp.std_ppcmds} that are + interpreted as raw strings. *) +include Ppvernacsig.Pp + +(** The rich pretty-printers produce {!Pp.std_ppcmds} that are + interpreted as annotated strings. The annotations can be + retrieved using {!RichPp.rich_pp}. Their definitions are + located in {!Ppannotation.t}. *) +module Richpp : Ppvernacsig.Pp |