obsidian-quartz

hugo_memo

spa

遷移で更新されないようなやつ() enableSPA: false

privete default draft

How to set all md files front matter draft false default ,in config file or other method? - support - HUGO

[[cascade]]
draft = true
[cascade._target]
kind = 'page'

これをコンフィグにするとdraft: false を明示的にしないと見えないようになる

config| Hugo

  -b, --baseURL string             hostname (and path) to the root, e.g. https://spf13.com/
  -D, --buildDrafts                include content marked as draft
  -E, --buildExpired               include expired content
  -F, --buildFuture                include content with publishdate in the future
      --cacheDir string            filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
      --cleanDestinationDir        remove files from destination not found in static directories
      --clock string               set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00
  -c, --contentDir string          filesystem path to content directory
  -d, --destination string         filesystem path to write files to
      --disableKinds strings       disable different kind of pages (home, RSS etc.)
      --enableGitInfo              add Git revision, date, author, and CODEOWNERS info to the pages
  -e, --environment string         build environment
      --forceSyncStatic            copy all files when static is changed.
      --gc                         enable to run some cleanup tasks (remove unused cache files) after the build
  -h, --help                       help for mod
      --ignoreCache                ignores the cache directory
      --ignoreVendorPaths string   ignores any _vendor for module paths matching the given Glob pattern
  -l, --layoutDir string           filesystem path to layout directory
      --minify                     minify any supported output format (HTML, XML etc.)
      --noBuildLock                don't create .hugo_build.lock file
      --noChmod                    don't sync permission mode of files
      --noTimes                    don't sync modification time of files
      --panicOnWarning             panic on first WARNING log
      --poll string                set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
      --printI18nWarnings          print missing translations
      --printMemoryUsage           print memory usage to screen at intervals
      --printPathWarnings          print warnings on duplicate target paths etc.
      --printUnusedTemplates       print warnings on unused templates.
  -s, --source string              filesystem path to read files relative from
      --templateMetrics            display metrics about template executions
      --templateMetricsHints       calculate some improvement hints when combined with --templateMetrics
  -t, --theme strings              themes to use (located in /themes/THEMENAME/)
      --themesDir string           filesystem path to themes directory
      --trace file                 write trace to file (not useful in general)

weightは優先度

Hugo で特定の記事を常にリスト上方に表示する(weight プロパティ) - まくまく Hugo ノート

小さいほど重要度が高い. 0 はdefault weight 値には、実はマイナスの値も設定することができるため、-99999 みたいのが優先

---
weight: 1
---

draftは (未完成)非表示

Hugo でドラフトページを作成する - まくまく Hugo ノート

Hugo のドラフト機能は、未完成の記事(非表示 draft: true という記述があると、そのページはドラフトとして扱われます。

---
draft: true
---

ドラフトも生成する場合 -D (--buildDrafts) オプションを指定します。

$ hugo -D         # サイトを生成する場合
$ hugo server -D  # サーバーを立ち上げる場合