1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

DOCS: [GitBook] Code block syntax (#2000)

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
Jeffrey Cafferata
2023-01-29 19:15:03 +01:00
committed by GitHub
parent 2c8fdf5bce
commit 947efef612
2 changed files with 4 additions and 4 deletions

View File

@ -25,9 +25,9 @@ For example these two statements are equivalent:
```javascript
DOMAIN_ELSEWHERE("example.com", REG_NAMEDOTCOM, ["ns1.foo.com", "ns2.foo.com"]);
```
// ...is equivalent to...
```javascript
D("example.com", REG_NAMEDOTCOM,
NO_PURGE,
NAMESERVER("ns1.foo.com"),

View File

@ -30,9 +30,9 @@ For example these two statements are equivalent:
```javascript
DOMAIN_ELSEWHERE_AUTO("example.com", REG_NAMEDOTCOM, DSP_AZURE);
```
// ...is equivalent to...
```javascript
D("example.com", REG_NAMEDOTCOM,
NO_PURGE,
DnsProvider(DSP_AZURE)