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

adding docs again

This commit is contained in:
Craig Peterson
2017-01-11 13:02:45 -07:00
parent 8e5257c497
commit 7ba051d750
40 changed files with 761 additions and 0 deletions

28
docs/js.md Normal file
View File

@@ -0,0 +1,28 @@
---
layout: default
---
# Javascript DSL
DNSControl uses javascript as its primary input language to provide power and flexibility to configure your domains. The ultimate purpose of the javascript is to consturct a
[DNSConfig](https://godoc.org/github.com/StackExchange/dnscontrol#DNSConfig) object that will be passed to the go backend and operated on.
{% include funcList.md title="Top Level Functions" dir="global" %}
{% include funcList.md title="Domain Modifiers" dir="domain" %}
{% include funcList.md title="Record Modifiers" dir="record" %}
<script>
$(function(){
var f = function(){
$("div.panel").removeClass("panel-success")
var jmp = window.location.hash;
if(jmp){
$("div"+jmp).addClass("panel-success")
}
}
f();
$(window).on('hashchange',f);
})
</script>