226 lines
6.9 KiB
Plaintext
226 lines
6.9 KiB
Plaintext
sitegen = require "sitegen"
|
|
Site = require "sitegen.site"
|
|
Path = require "sitegen.path"
|
|
-- PygmentsPlugin = require "sitegen.plugins.pygments"
|
|
html = require "sitegen.html"
|
|
common = require "sitegen.common"
|
|
cosmo = require "sitegen.cosmo"
|
|
date = require "date"
|
|
|
|
import tag from html
|
|
import escape_patt from require "sitegen.common"
|
|
import p from require "moon" -- debug
|
|
|
|
-- Change output dir to what Openresty prefers
|
|
Site.config.out_dir = "html/"
|
|
|
|
-- Compile lua-filter used by Pandoc to highlight MoonScript syntax
|
|
os.execute "moonc pygments.moon"
|
|
|
|
try_compile = (text, options=implicitly_return_root: false) ->
|
|
to_lua text, options
|
|
|
|
-- PygmentsPlugin.highlight = (lang, code) =>
|
|
-- fname = os.tmpname!
|
|
-- with io.open fname, "w"
|
|
-- \write code
|
|
-- \close!
|
|
--
|
|
-- p = io.popen ("pygmentize -f html -l %s %s")\format lang, fname
|
|
-- out = p\read"*a"
|
|
--
|
|
-- -- get rid of the div and pre inserted by pygments
|
|
-- assert out\match('^<div class="highlight"><pre>(.-)\n?</pre></div>'),
|
|
-- "Failed to parse pygmentize result, is pygments installed?"
|
|
|
|
-- print "HIGHLIGHT CALLED"
|
|
--
|
|
-- fname = os.tmpname!
|
|
-- with io.open fname, "w"
|
|
-- \write block.text
|
|
-- \close!
|
|
--
|
|
-- cmd = "pygmentize -f html -O style=dracula,wrapcode,classprefix=py- -l %s %s"
|
|
--
|
|
-- if lang == "moon" or lang == "moonscript"
|
|
-- -- p = io.popen ("pygmentize -f html -O style=dracula,wrapcode,classprefix=py- -l moonscript.py %s -x")\format fname
|
|
-- p = io.popen (cmd .. " -x")\format "moonscript.py", fname
|
|
-- -- p = io.popen (cmd)\format "moonscript", fname
|
|
--
|
|
-- -- p = io.open fname
|
|
-- out = p\read"*a"
|
|
-- p\close!
|
|
-- out
|
|
-- -- pandoc.RawBlock "html", "moonscript"
|
|
-- else
|
|
-- if lang == nil or lang == "heex"
|
|
-- -- if block.classes[1] == nil
|
|
-- -- cb = pandoc.CodeBlock(block.text, class: "sourceCode")
|
|
-- -- pandoc.Div cb, class: "sourceCode"
|
|
-- -- else
|
|
-- -- block
|
|
--
|
|
-- "code: #{code}"
|
|
-- else
|
|
-- status, handle_or_error = pcall ->
|
|
-- io.popen (cmd)\format lang, fname
|
|
-- -- io.open fname
|
|
--
|
|
-- sout = handle_or_error\read"*a"
|
|
-- -- handle_or_error\close!
|
|
-- if sout\len! == 0
|
|
-- -- cb = pandoc.CodeBlock(block.text, class: "sourceCode")
|
|
-- -- pandoc.Div cb, class: "sourceCode"
|
|
-- "code: #{code}"
|
|
-- else
|
|
-- -- pandoc.RawBlock "html", sout
|
|
-- sout
|
|
|
|
-- Configure the command our custom renderer uses to convert markdown to html
|
|
rend = "renderers.markdown"
|
|
-- require(rend).cmd = "pandoc --mathjax --no-highlight >"
|
|
require(rend).cmd = "pandoc --mathjax >"
|
|
-- require(rend).cmd = "pandoc --mathjax --lua-filter pygments.lua >"
|
|
|
|
-- Insert custom renderer in the first position so it will be preferred
|
|
table.insert Site.default_renderers, 1, rend
|
|
|
|
-- Remove "pygments" plugin
|
|
Site.default_plugins = for v in *Site.default_plugins
|
|
if v\find "pygments" then continue else v
|
|
|
|
table.insert Site.default_plugins, 1, "plugins.pygments"
|
|
|
|
-- from https://github.com/leafo/sitegen/blob/v0.2/spec/sitegen_spec.moon#L9-L18
|
|
get_files = (path, prefix=path) ->
|
|
files = Path.read_exec "find", path, "-type", "f"
|
|
files = [f for f in files\gmatch "[^\n]+"]
|
|
|
|
if prefix
|
|
files = for file in *files
|
|
file\gsub "^#{escape_patt prefix}/?", ""
|
|
|
|
table.sort files
|
|
files
|
|
|
|
-- strip file extension from filename
|
|
rootname = (str) ->
|
|
result = string.gsub str, "%..+", ""
|
|
result
|
|
|
|
reflect = (obj) -> [key for key, value in pairs obj]
|
|
last = (list) -> list[#list]
|
|
reverse = (list={}) -> [item for item in *list[#list, 1, -1]]
|
|
|
|
extract_id = (source) -> string.match Path.filename(source), "%a[%w%-]+"
|
|
extract_date = (source) -> string.match Path.filename(source), "%d+%-%d%d%-%d%d"
|
|
format_date = (str) -> date(str)\fmt "%b %d, %Y"
|
|
|
|
strip_date = (filename) ->
|
|
filename\gsub "#{escape_patt(extract_date(filename) .. "-")}/?", ""
|
|
|
|
publish_date = (path using extract_date, format_date) ->
|
|
date = extract_date path
|
|
date, format_date date
|
|
|
|
target = (path, prefix=".") ->
|
|
filename = rootname last common.split path, "/"
|
|
Path.join prefix, strip_date filename
|
|
|
|
h = (word) -> word\sub(1, 1)\upper!
|
|
t = (word) -> word\sub(2, -1)\lower!
|
|
titleize = (word) -> h(word), t(word)
|
|
|
|
titleize_slug = (slug="") ->
|
|
words = [{ titleize word } for word in *common.split slug, "-"]
|
|
table.concat [head .. tail for { head, tail } in *words], " "
|
|
|
|
files_from = (path=".") ->
|
|
[Path.join path, file for file in *reverse get_files path]
|
|
|
|
get_posts = (limit) =>
|
|
pages = @site\query_pages { is_a: "post" }
|
|
table.sort pages, (a, b) -> a.source > b.source
|
|
limit_or_page_count = math.min limit or #pages, #pages
|
|
[post for post in *pages[1, limit_or_page_count]]
|
|
|
|
sitegen.create =>
|
|
@site_title = "WebDevCat.me"
|
|
@app_name = "stasis"
|
|
@version = "0.2.12"
|
|
|
|
-- helpers
|
|
@titleize = (slug) => titleize_slug slug
|
|
@cif = (args, has_block) => cosmo.cif args, has_block
|
|
|
|
@list_posts = (arg={}, _) =>
|
|
posts = [post for post in *get_posts @, arg.limit]
|
|
|
|
html.build ->
|
|
import section, h3, time, a from tag
|
|
md = @site\get_renderer "sitegen.renderers.markdown"
|
|
|
|
return for post in *posts
|
|
{:title, :blurb, :id, publish_date: {iso, pretty}} = post.meta
|
|
url = rootname post\url_for!
|
|
|
|
if blurb
|
|
blurb = raw md\render @, blurb
|
|
blurb.text = unpack [v for v in blurb.text\gmatch "<p>(.-)</p>"]
|
|
|
|
section {
|
|
h3 { a { title or titleize_slug(id), href: url }}
|
|
time { pretty, datetime: iso }
|
|
"—", blurb, a { "Read post →", class: "read-post-link", href: url }
|
|
}
|
|
|
|
add_all = (files) ->
|
|
add path, {
|
|
target: target path, "/posts"
|
|
template: "post"
|
|
is_a: "post"
|
|
publish_date: { publish_date path }
|
|
id: extract_id path
|
|
} for path in *files
|
|
|
|
add "index.html", title: "Catalin Mititiuc"
|
|
add "blog.html", title: "Posts", target: "posts/index", template: "blog"
|
|
add "example.moon.md",
|
|
template: "post"
|
|
title: "MoonScript Example"
|
|
publish_date: format_date date true
|
|
add "code.md",
|
|
template: "post"
|
|
title: "Code Syntax Highlight Samples"
|
|
publish_date: format_date date true
|
|
-- add_all files_from "docs"
|
|
|
|
-- with PygmentsPlugin.custom_highlighters
|
|
-- .moon = (code_text, page, options) =>
|
|
-- lua_text, err = try_compile code_text, options
|
|
-- return err if not lua_text
|
|
--
|
|
-- html.build ->
|
|
-- tag.span "moon custom highlighter"
|
|
--
|
|
-- .heex = (code_text, page, options) =>
|
|
-- lua_text, err = try_compile code_text, options
|
|
-- return err if not lua_text
|
|
--
|
|
-- html.build ->
|
|
-- tag.span "heex custom highlighter"
|
|
|
|
|
|
|
|
copy "app.css"
|
|
copy "pygments.css"
|
|
copy "moonscript.css"
|
|
copy "pandoc.css"
|
|
|
|
-- replace post markdown yaml headers with moonscript headers
|
|
filter "docs", (body) =>
|
|
body\gsub "^%-%-%-.-%.%.%.", (yaml_header) ->
|
|
header = yaml_header\gsub "%-%-%-", "{"
|
|
moonscript_header = header\gsub "%.%.%.", "}"
|
|
moonscript_header
|