mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-02 07:07:46 +00:00

* refactor: ✨ move in one commit Eveything in modules should probably be changed to `exported` defs. The idea is to move everything first to keep proper history. * refactor: 📝 add modules readme (wip) * refactor: ✨ small move * refactor: 📝 changed nestring, updated modules readme * refactor: 📝 to document or not to document * fix: 🐛 themes replaced the template to use `main` and regenerated them from lemnos themes. * Revert "fix: 🐛 themes" This reverts commit 4918d3633c8d2d81950a0ed0cfd9eb84241bc886. * refactor: ✨ introduce sourced - Created a source `root` in which sourcable demos are stored. Some might get converted to modules later on. - Moved some files to bin too. * fix: 🐛 fehbg.nu * fix: 🐛 modules/after.nu * moved some other stuff around --------- Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
96 lines
3.4 KiB
Text
96 lines
3.4 KiB
Text
# Converts markdown into their equivalent html pages
|
|
let $markdown_files = (ls **/*.md)
|
|
|
|
for $markdown in $markdown_files {
|
|
let $contents = (open --raw $markdown.name)
|
|
|
|
let $content_lines = ($contents | lines)
|
|
|
|
let $first_line = ($content_lines | first | str trim)
|
|
|
|
if $first_line == "---" {
|
|
let $header = ($content_lines
|
|
| skip 1
|
|
| take while {|x| ($x | str trim) != "---"}
|
|
| str join "\n"
|
|
| from yaml)
|
|
|
|
let $post = ($content_lines
|
|
| skip 1
|
|
| skip while {|x| ($x | str trim) != "---"}
|
|
| skip 1)
|
|
|
|
print $header
|
|
|
|
let $html_post = ($post
|
|
| each {|line|
|
|
if ($line | str starts-with "#") {
|
|
let $line = ($line | str replace "^# (.*)$" "<h1>$1</h1>")
|
|
let $line = ($line | str replace "^## (.*)$" "<h2>$1</h2>")
|
|
let $line = ($line | str replace "^### (.*)$" "<h3>$1</h3>")
|
|
|
|
$line
|
|
} else if $line != "" {
|
|
# Otherwise, it's a paragraph
|
|
# Convert images
|
|
let $line = ($line | str replace --all '!\[(.+)\]\((.+)\)' '<img src="$2" alt="$1"/>')
|
|
let $line = ($line | str replace --all 'src="../assets' 'src="assets')
|
|
|
|
# Convert links
|
|
let $line = ($line | str replace --all '\[(.+?)\]\((.+?)\)' '<a href="$2">$1</a>')
|
|
|
|
# Convert code
|
|
let $line = ($line | str replace --all '`(.+?)`' '<code>$1</code>')
|
|
$"<p>($line)</p>"
|
|
}
|
|
})
|
|
|
|
let $html_post = ($html_post | str join "\n")
|
|
let $html_post = $"<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>($header.title)</title>
|
|
<style>
|
|
img {
|
|
max-width: 600px
|
|
}
|
|
p {
|
|
display: block;
|
|
margin-block-start: 1em;
|
|
margin-block-end: 1em;
|
|
margin-inline-start: 0px;
|
|
margin-inline-end: 0px;
|
|
}
|
|
body {
|
|
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 16px;
|
|
color: #2c3e50;
|
|
line-height: 1.7;
|
|
max-width: 740px;
|
|
margin: 0 auto;
|
|
padding: 2rem 2.5rem;
|
|
}
|
|
code {
|
|
color: #476582;
|
|
padding: .25rem .5rem;
|
|
margin: 0;
|
|
font-size: .85em;
|
|
background-color: #eeeeee;
|
|
border-radius: 3px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
($html_post)
|
|
</body>
|
|
</html>"
|
|
|
|
# print $html_post
|
|
|
|
let $name = ($markdown.name | path parse | update extension "html" | path join)
|
|
|
|
$html_post | save --raw $name
|
|
}
|
|
}
|