stelcodes / nuzzle

A functional static site generator so smol you won't even notice it's there 🐈
Eclipse Public License 2.0
17 stars 1 forks source link

Remove string URL in page map, replace with vector URL (#135) #140

Closed stelcodes closed 2 years ago

stelcodes commented 2 years ago

This patch merges together :nuzzle/page-key and :nuzzle/url into just :nuzzle/url which is the vector representation of the page URL. The string version will now only be available by calling the nuzzle.util/stringify-url function on the vector URL.

This simplifies the page data by making the vector format the canonical representation of a URL in Nuzzle. Eventually I want to customize the Hiccup creation so a vector URL can be used as an link tag's :href value.

Fixes #135