[v9_9] change markdown comment style for pandoc

This commit is contained in:
Evan Hunt 2017-04-27 23:42:16 -07:00
parent 4034a1176e
commit 02cb20760b
10 changed files with 14 additions and 47 deletions

11
HISTORY
View file

@ -1,14 +1,3 @@
<!--- - Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") - -
Permission to use, copy, modify, and/or distribute this software for any -
purpose with or without fee is hereby granted, provided that the above -
copyright notice and this permission notice appear in all copies. - - THE
SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH -
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY
SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. ---> ###
Functional enhancements from prior major releases of BIND 9
BIND 9.8.0

View file

@ -1,4 +1,4 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
@ -12,7 +12,7 @@
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
--->
-->
### Functional enhancements from prior major releases of BIND 9
#### BIND 9.8.0

11
OPTIONS
View file

@ -1,14 +1,3 @@
<!--- - Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") - -
Permission to use, copy, modify, and/or distribute this software for any -
purpose with or without fee is hereby granted, provided that the above -
copyright notice and this permission notice appear in all copies. - - THE
SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH -
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY
SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --->
Setting the STD_CDEFINES environment variable before running configure can
be used to enable certain compile-time options that are not explicitly
defined in configure.

View file

@ -1,4 +1,4 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
@ -12,7 +12,7 @@
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
--->
-->
Setting the `STD_CDEFINES` environment variable before running `configure`
can be used to enable certain compile-time options that are not explicitly
defined in `configure`.

11
README
View file

@ -1,14 +1,3 @@
<!--- - Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") - -
Permission to use, copy, modify, and/or distribute this software for any -
purpose with or without fee is hereby granted, provided that the above -
copyright notice and this permission notice appear in all copies. - - THE
SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH -
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY
SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. ---> #
BIND 9
Contents

View file

@ -1,4 +1,4 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
@ -12,7 +12,7 @@
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
--->
-->
# BIND 9
### Contents

View file

@ -1,4 +1,4 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
@ -12,7 +12,7 @@
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
--->
-->
## BIND Source Access and Contributor Guidelines
*Apr 14, 2017*

View file

@ -1,4 +1,4 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
@ -12,7 +12,7 @@
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
--->
-->
## BIND Developer Information
### Contents

View file

@ -1,4 +1,4 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- Permission to use, copy, modify, and/or distribute this software for any
@ -12,7 +12,7 @@
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
--->
-->
## BIND 9 Coding Style
BIND 9 is principally written in [C](#cstyle), with some additional code

View file

@ -220,9 +220,9 @@ foreach $file (keys %file_types) {
$end_comment = "-->\n";
} elsif ($type eq "MKD") {
$mkd_comment = 1;
$start_comment = "<!---\n";
$start_comment = "<!--\n";
$prefix = " - ";
$end_comment = "--->";
$end_comment = "-->";
} elsif ($type eq "TXT") {
$prefix = "";
} else {