Blog

Article Tags

Hua Article Mode

By William Jeffrey Rankin, Thu Sep 26 2024

As of revision 165, Hua has an article mode that enables processing of an individual article. This is useful in instances where an article is in development and requires review. In this mode only the specified article is generated; index, archive, and tagged-with files are not touched. Since only one article is processed, this mode is significantly faster as well.

Article Mode Usage & Performance (this blog)

jeffr@CALLISTO: D:\Documents\wjr-blog $ Measure-Command { ..\Hua\hua.ps1 .\hua.cfg -A '00100' | Out-Default }

...
Seconds           : 0
Milliseconds      : 375
...

Normal Mode Usage & Performance (this blog)

jeffr@CALLISTO: D:\Documents\wjr-blog $ Measure-Command { ..\Hua\hua.ps1 .\hua.cfg | Out-Default }

...
Seconds           : 3
Milliseconds      : 27
...

Related Articles