mirror of https://github.com/kdl-org/kdl.git
example tweaks
This commit is contained in:
parent
f81fcfada5
commit
f0f9589636
|
|
@ -1,7 +1,7 @@
|
||||||
package {
|
package {
|
||||||
name kdl
|
name kdl
|
||||||
version "0.0.0"
|
version "0.0.0"
|
||||||
description "kat's document language"
|
description "The kdl document language"
|
||||||
authors "Kat Marchán <kzm@zkat.tech>"
|
authors "Kat Marchán <kzm@zkat.tech>"
|
||||||
license-file LICENSE.md
|
license-file LICENSE.md
|
||||||
edition "2018"
|
edition "2018"
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@ jobs {
|
||||||
components rustfmt
|
components rustfmt
|
||||||
override #true
|
override #true
|
||||||
}
|
}
|
||||||
step rustfmt run="cargo fmt --all -- --check"
|
step rustfmt { run cargo fmt --all -- --check }
|
||||||
step docs run="cargo doc --no-deps"
|
step docs { run cargo doc --no-deps }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
build_and_test "Build & Test" {
|
build_and_test "Build & Test" {
|
||||||
|
|
@ -40,8 +40,8 @@ jobs {
|
||||||
components clippy
|
components clippy
|
||||||
override #true
|
override #true
|
||||||
}
|
}
|
||||||
step Clippy run="cargo clippy --all -- -D warnings"
|
step Clippy { run cargo clippy --all -- -D warnings }
|
||||||
step "Run tests" run="cargo test --all --verbose"
|
step "Run tests" { run cargo test --all --verbose }
|
||||||
step "Other Stuff" run="
|
step "Other Stuff" run="
|
||||||
echo foo
|
echo foo
|
||||||
echo bar
|
echo bar
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,13 @@ html lang=en {
|
||||||
meta \
|
meta \
|
||||||
name=description \
|
name=description \
|
||||||
content="kdl is a document language, mostly based on SDLang, with xml-like semantics that looks like you're invoking a bunch of CLI commands!"
|
content="kdl is a document language, mostly based on SDLang, with xml-like semantics that looks like you're invoking a bunch of CLI commands!"
|
||||||
title "kdl - Kat's Document Language"
|
title "kdl - The KDL Document Language"
|
||||||
link rel=stylesheet href="/styles/global.css"
|
link rel=stylesheet href="/styles/global.css"
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
main {
|
main {
|
||||||
header class="py-10 bg-gray-300" {
|
header class="py-10 bg-gray-300" {
|
||||||
h1 class="text-4xl text-center" "kdl - Kat's Document Language"
|
h1 class="text-4xl text-center" "kdl - The KDL Document Language"
|
||||||
}
|
}
|
||||||
section class=kdl-section id=description {
|
section class=kdl-section id=description {
|
||||||
p {
|
p {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue