file を検索する機能の追加

main
zztkm 2 years ago
parent f77aa916de
commit 2579bda3d8

28
vss.v

@ -2,15 +2,18 @@ module main
import os
import cli
import markdown
fn main() {
mut app := cli.Command {
name: "vss"
version: "0.0.0"
description: "static site generator"
mut app := cli.Command{
name: 'vss'
version: '0.0.0'
description: 'static site generator'
execute: fn (cmd cli.Command) ? {
paths := get_paths("docs")
for path in paths {
println(path)
}
return
}
}
@ -18,7 +21,18 @@ fn main() {
text := '# Markdown Rocks!'
output := markdown.to_html(text)
println(output) // <h1>Markdown Rocks!</h1>
app.setup()
app.parse(os.args)
}
// work の検証をやる
https://modules.vlang.io/os.html#walk
fn normalise_paths(paths []string) []string {
mut res := paths.map(it.replace(os.path_separator, '/'))
res.sort()
return res
}
fn get_paths(path string) []string {
mds := os.walk_ext(path, '.md')
return mds
}

Loading…
Cancel
Save