From 21c007e2fcf73fe4ef04dd07db7116afed46047a Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed, 31 May 2023 21:01:23 +0000
Subject: [PATCH] rendering, link resolution, asset copying

---
 quartz/index.ts |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/quartz/index.ts b/quartz/index.ts
index b80ee88..49eec2a 100644
--- a/quartz/index.ts
+++ b/quartz/index.ts
@@ -7,6 +7,8 @@
 import http from "http"
 import serveHandler from "serve-handler"
 import { createProcessor, parseMarkdown } from "./processors/parse"
+import { filterContent } from "./processors/filter"
+import { emitContent } from "./processors/emit"
 
 interface Argv {
   directory: string
@@ -21,7 +23,16 @@
   return async (argv: Argv, version: string) => {
     console.log(chalk.bgGreen.black(`\n Quartz v${version} \n`))
     const perf = new PerfTimer()
-    const output = path.join(argv.directory, argv.output)
+    const output = argv.output
+
+    if (argv.verbose) {
+      const pluginCount = Object.values(cfg.plugins).flat().length
+      const pluginNames = (key: 'transformers' | 'filters' | 'emitters') => cfg.plugins[key].map(plugin => plugin.name)
+      console.log(`Loaded ${pluginCount} plugins`)
+      console.log(`  Transformers: ${pluginNames('transformers').join(", ")}`)
+      console.log(`  Filters: ${pluginNames('filters').join(", ")}`)
+      console.log(`  Emitters: ${pluginNames('emitters').join(", ")}`)
+    }
 
     // clean
     if (argv.clean) {
@@ -36,7 +47,7 @@
     perf.addEvent('glob')
     const fps = await globby('**/*.md', {
       cwd: argv.directory,
-      ignore: [...cfg.configuration.ignorePatterns, 'quartz/**'],
+      ignore: cfg.configuration.ignorePatterns,
       gitignore: true,
     })
 
@@ -47,8 +58,8 @@
     const processor = createProcessor(cfg.plugins.transformers)
     const filePaths = fps.map(fp => `${argv.directory}${path.sep}${fp}`)
     const parsedFiles = await parseMarkdown(processor, argv.directory, filePaths, argv.verbose)
-    // const filteredContent = filterContent(cfg.plugins.filters, processedContent, argv.verbose)
-    // await emitContent(argv.directory, output, cfg, filteredContent, argv.verbose)
+    const filteredContent = filterContent(cfg.plugins.filters, parsedFiles, argv.verbose)
+    await emitContent(output, cfg, filteredContent, argv.verbose)
     console.log(chalk.green(`Done in ${perf.timeSince()}`))
 
     if (argv.serve) {

--
Gitblit v1.10.0