Help needed with "Publishing Framework"

Hi,

I just found this powerfull “publishing framework” Demo and also the Github PR.
So, How can I install this plugin/framework in my Wiki? appreciate you help here with any links/docs as I didn’t find much.

Thanks

Hi @Mohamed_Amin the publishing framework is a work in progress, and not ready for general use. I halted the work while we completed v5.2.0 when it became clear that we needed the ability to use arbitrary field names, and plan to return to it over the next few months.

Thanks a lot Jeremy for your reply,

So, What is my options to approach the following:

After rendering my Wiki using nodejs, I got a very clean/working HTML files with its internal “links” (href) are pointing to the correct HTML files, all working great

Now, knowing that my “file names” contains a lot of utf8 characters (Arabic), I need to encode and minify/uglify/mangle all those “file names” and the corresponding “href” for “links”, “images”, … inside the HTML markup, where the “final names” and “href” are ONLY “ascii code”

currently I’m thinking to use unified.js (Github Repo)

What is my best option here?

Thanks in advance

Hi @Mohamed_Amin the slugify operator is designed for this purpose:

https://tiddlywiki.com/#slugify%20Operator

It needs to be added in several places

  • In the --render command to transform tiddler titles into generated filenames
  • In the templates, set tv-filter-export-link to [slugify[]]

By the way, I hadn’t seen unified.js, thank you, it’s very interesting.

3 Likes