alfredbaudisch / pardall_markdown

Reactive publishing framework, filesystem-based with support for Markdown, nested hierarchies, and instant content rebuilding. Written in Elixir.
Apache License 2.0
115 stars 7 forks source link

It won't find a directory with "~" in it #67

Closed zigomi closed 1 year ago

zigomi commented 1 year ago

This won't work - not found

  # config/config.exs

  root_path: "~/my_content",
  static_assets_path: "~/my_content/static",

Whereas this will:

  root_path: "/home/u1/my_content",
  static_assets_path: "/home/u1/my_content/static",

How to make it expand a path with ~ in it ?