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 {
|
||||
name kdl
|
||||
version "0.0.0"
|
||||
description "kat's document language"
|
||||
description "The kdl document language"
|
||||
authors "Kat Marchán <kzm@zkat.tech>"
|
||||
license-file LICENSE.md
|
||||
edition "2018"
|
||||
|
|
|
|||
|
|
@ -19,8 +19,8 @@ jobs {
|
|||
components rustfmt
|
||||
override #true
|
||||
}
|
||||
step rustfmt run="cargo fmt --all -- --check"
|
||||
step docs run="cargo doc --no-deps"
|
||||
step rustfmt { run cargo fmt --all -- --check }
|
||||
step docs { run cargo doc --no-deps }
|
||||
}
|
||||
}
|
||||
build_and_test "Build & Test" {
|
||||
|
|
@ -40,8 +40,8 @@ jobs {
|
|||
components clippy
|
||||
override #true
|
||||
}
|
||||
step Clippy run="cargo clippy --all -- -D warnings"
|
||||
step "Run tests" run="cargo test --all --verbose"
|
||||
step Clippy { run cargo clippy --all -- -D warnings }
|
||||
step "Run tests" { run cargo test --all --verbose }
|
||||
step "Other Stuff" run="
|
||||
echo foo
|
||||
echo bar
|
||||
|
|
|
|||
|
|
@ -6,13 +6,13 @@ html lang=en {
|
|||
meta \
|
||||
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!"
|
||||
title "kdl - Kat's Document Language"
|
||||
title "kdl - The KDL Document Language"
|
||||
link rel=stylesheet href="/styles/global.css"
|
||||
}
|
||||
body {
|
||||
main {
|
||||
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 {
|
||||
p {
|
||||
|
|
|
|||
Loading…
Reference in New Issue