example tweaks

This commit is contained in:
Kat Marchán 2024-02-08 11:14:54 -08:00
parent f81fcfada5
commit f0f9589636
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
3 changed files with 7 additions and 7 deletions

View File

@ -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"

View File

@ -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

View File

@ -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 {