[v9_11] change markdown comment style for pandoc

This commit is contained in:
Evan Hunt
2017-04-27 23:40:17 -07:00
parent d079dc1d27
commit 59663800d2
10 changed files with 25 additions and 25 deletions

View File

@@ -1,3 +1,10 @@
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
### Functional enhancements from prior major releases of BIND 9
#### BIND 9.10.0

10
OPTIONS
View File

@@ -1,10 +1,6 @@
<!--- - Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") - -
This Source Code Form is subject to the terms of the Mozilla Public -
License, v. 2.0. If a copy of the MPL was not distributed with this -
file, You can obtain one at http://mozilla.org/MPL/2.0/. ---> 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.
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.
Some of these settings are:

View File

@@ -1,10 +1,10 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
--->
-->
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`.

5
README
View File

@@ -1,7 +1,4 @@
<!--- - Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") - -
This Source Code Form is subject to the terms of the Mozilla Public -
License, v. 2.0. If a copy of the MPL was not distributed with this -
file, You can obtain one at http://mozilla.org/MPL/2.0/. ---> # BIND 9
BIND 9
Contents

View File

@@ -1,10 +1,10 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
--->
-->
# BIND 9
### Contents

View File

@@ -1,10 +1,10 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
--->
-->
## BIND Source Access and Contributor Guidelines
*Apr 14, 2017*

View File

@@ -1,10 +1,10 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
--->
-->
## BIND Developer Information
### Contents

View File

@@ -1,10 +1,10 @@
<!---
<!--
- Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
--->
-->
## BIND 9 Coding Style
BIND 9 is principally written in [C](#cstyle), with some additional code

View File

@@ -4,10 +4,10 @@
./CHANGES X 2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
./COPYRIGHT TXT 1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
./HISTORY X 2010,2013,2016,2017
./HISTORY.md X 2017
./HISTORY.md MKD 2017
./LICENSE X 2016
./Makefile.in MAKE 1998,1999,2000,2001,2002,2004,2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016,2017
./OPTIONS MKD 2017
./OPTIONS X 2017
./OPTIONS.md MKD 2017
./README X 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
./README.md MKD 2017

View File

@@ -208,9 +208,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 {