@@ -218,6 +218,21 @@ The value is a <term>Jingoo</term> template. There are following variables in th
218
218
* ` source_file_base_name ` — name of the input file without extensions (like ` cat ` ).
219
219
* ` target_dir ` — output directory path.
220
220
221
+ ## Character encoding
222
+
223
+ By default, soupault assumes that all pages are stored in UTF-8.
224
+ However, if your website uses a different encoding and you have reasons to keep it that way,
225
+ you can configure soupault to use it.
226
+
227
+ ``` toml
228
+ [settings ]
229
+ page_character_encoding = ' utf-8'
230
+ ```
231
+
232
+ The following encodings are supported: ` ascii ` , ` iso-8859-1 ` , ` windows-1251 ` , ` windows-1252 ` , ` utf-8 ` ,
233
+ ` utf-16 ` , ` utf-16le ` , ` utf-16be ` , ` utf-32le ` , ` utf-32be ` , and ` ebcdic ` .
234
+ You can write those options in either upper or lower case (e.g., ` UTF-16LE ` , ` UTF-16le ` , and ` utf-16le `
235
+ are equally acceptable).
221
236
222
237
## Page processing
223
238
@@ -652,6 +667,14 @@ Since soupault 4.0.0, you can also specify index sorting options on a per-view b
652
667
strict_sort = false
653
668
```
654
669
670
+ Since 4.7.0, it is possible to limit the number of displayed items with:
671
+
672
+ ``` toml
673
+ [index .views .main-page-news ]
674
+ # Display up to ten entries on the main page
675
+ max_items = 10
676
+ ```
677
+
655
678
### Interaction with widgets
656
679
657
680
Soupault first inserts rendered index data, then runs widgets. This is to allow widgets to modify HTML generated by index processors.
@@ -726,6 +749,13 @@ or write pages to disk during that first pass.
726
749
Then it will make a second pass to generate actual pages as usual, except the ` index_entry ` variable will contain the complete
727
750
site index even for plugins running on content pages.
728
751
752
+ To help plugins and hooks determine if index data for a page is guaranteed to be available or not yet,
753
+ there is a variable named ` soupault_pass ` .
754
+
755
+ * 0, if ` index_first = false `
756
+ * 1, if ` index_first = true ` and it's the first (index-only) pass.
757
+ * 2, if ` index_first = true ` and it's the second (full page build) pass.
758
+
729
759
### Exporting metadata to JSON
730
760
731
761
If built-in functionality is not enough, you can export the site index data to a JSON file
@@ -1603,7 +1633,7 @@ Plugins have access to the following global variables:
1603
1633
<dt >config</dt >
1604
1634
<dd >A table with widget config options.</dd >
1605
1635
<dt >soupault_config</dt >
1606
- <dd >The global soupault config (deserialized contents of <code >soupault.conf </code >).</dd >
1636
+ <dd >The global soupault config (deserialized contents of <code >soupault.toml </code >).</dd >
1607
1637
<dt >site_index</dt >
1608
1638
<dd >Site index data structure.</dd >
1609
1639
<dt >index_entry</dt >
@@ -1612,15 +1642,22 @@ Plugins have access to the following global variables:
1612
1642
<dd >Convenience variables for the corresponding config options.</dd >
1613
1643
<dt >persistent_data</dt >
1614
1644
<dd >A table for values supposed to be persistent between different plugin runs.</dd >
1645
+ <dt >global_data</dt >
1646
+ <dd >A table for values shared between all plugins and hooks.</dd >
1647
+ <dt >soupault_pass</dt >
1648
+ <dd >
1649
+ The number of the website build pass <a href="#making-index-data-available-to-every-page">two-pass workflow</a>.
1650
+ Always 0 if <code>index.index_first = false</code>, otherwise 1 on the first pass and 2 on the second pass.
1651
+ </dd >
1615
1652
</dl >
1616
1653
1617
1654
<h4 id =" plugin-persistent-data " >Persistent data</h4 >
1618
1655
1619
- All of these variables _ except for ` persistent_data ` _ are injected into the interpreter environment every time a plugin is executed.
1656
+ All of these variables _ except for ` persistent_data ` and ` global_data ` _ are injected into the interpreter environment every time a plugin is executed.
1620
1657
If you modify their values, it will only affect the instance of the plugin that is currently running. When soupault finishes processing the current page
1621
1658
and moves on to a new page, the plugin will start in a clean environment.
1622
1659
1623
- The ` persistent_data ` variable is an exception. On soupault startup, its value is set to an empty table.
1660
+ The ` persistent_data ` and ` global_data ` variables are exception. On soupault startup, their value is set to an empty table.
1624
1661
When a plugin finishes running, soupault will retrieve it from the Lua interpreter state and pass it to the next plugin run.
1625
1662
This can be used to avoid running some expensive calculations more than once, or for gathering data from all pages.
1626
1663
@@ -1936,12 +1973,21 @@ using this function.
1936
1973
1937
1974
##### Convenience functions
1938
1975
1939
- ###### <function >HTML.unwrap(element)</function >
1976
+ ###### <function >HTML.wrap(node, elem)</function > (since 4.7.0)
1977
+
1978
+ Wraps ` node ` in ` elem ` .
1979
+
1980
+ ###### <function >HTML.unwrap(element)</function > (since 4.7.0)
1940
1981
1941
1982
Removes the element and inserts its former children in its place.
1942
1983
For example, ` <div> <p>Test!</p> </div> ` will remove the outer ` <div> `
1943
1984
and leave just ` <p>Test!</p> ` .
1944
1985
1986
+ ###### <function >HTML.swap(l, r)</function >
1987
+
1988
+ Swaps two elements in the element tree. Element nodes ` l ` and ` r ` , obviously,
1989
+ must belong to the same element tree.
1990
+
1945
1991
###### <function >HTML.get_heading_level(element)</function >
1946
1992
1947
1993
For elements whose tag name matches ` <h[1-9]> ` pattern, returns the heading level.
@@ -2425,6 +2471,27 @@ Same as `YAML.from_string`, but returns `nil` on parse errors. Parse error messa
2425
2471
2426
2472
</module >
2427
2473
2474
+ <module name =" CSV " > (since 4.7.0)
2475
+
2476
+ ##### <function >CSV.from_string(str)</function >
2477
+
2478
+ Parses CSV data and returns it as a list (i.e., an int-indexed table) of lists.
2479
+
2480
+ ##### <function >CSV.unsafe_from_string(str)</function >
2481
+
2482
+ Like ` CSV.from_string ` but returns ` nil ` on errors instead or raising an exception.
2483
+
2484
+ ##### <function >CSV.to_list_of_tables(csv_data)</function >
2485
+
2486
+ Converts CSV data returned by ` CSV.from_string ` into a list of string-indexed tables for easy rendering in templates.
2487
+ The data variable must have at least two rows, the first row is assumed to be the header
2488
+ and used for field names.
2489
+
2490
+ All rows must have the same number of columns. If a row is malformed, this function raises an exception.
2491
+ There is no unsafe equivalent of it in soupault.
2492
+
2493
+ </module >
2494
+
2428
2495
<module name =" Date " >
2429
2496
2430
2497
##### <function >Date.now_timestamp()</function >
@@ -2631,8 +2698,8 @@ Page processing hooks allow Lua code to run between processing steps of replace
2631
2698
They have access to the same API functions as plugins, but their execution environments
2632
2699
are somewhat different and vary between hooks.
2633
2700
2634
- Hooks are configured in the ` hooks ` table. The following hooks are supported as of soupault 4.2 .0:
2635
- ` pre-parse ` , ` pre-process ` , ` post-index ` , ` render ` , ` save ` , ` post-save ` .
2701
+ Hooks are configured in the ` hooks ` table. The following hooks are supported as of soupault 4.7 .0:
2702
+ ` pre-parse ` , ` pre-process ` , ` post-index ` , ` render ` , ` save ` , ` post-save ` , and ` post-build ` .
2636
2703
2637
2704
Like widget subtables, hook subtables can contain arbitrary options.
2638
2705
@@ -2657,6 +2724,8 @@ It has the following variables in its environment:
2657
2724
* ` soupault_config ` — the complete soupault config.
2658
2725
* ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2659
2726
* ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2727
+ * ` global_data ` — the global shared data table.
2728
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2660
2729
2661
2730
For example, this website uses a pre-parse hook to globally replace the ` $SOUPAULT_RELEASE$ ` string
2662
2731
with the latest soupault release version from custom options.
@@ -2685,6 +2754,8 @@ It has the following variables in its environment:
2685
2754
* ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2686
2755
* ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2687
2756
* ` build_dir ` — the output directory from ` settings.build_dir ` or the ` --build-dir ` option if present.
2757
+ * ` global_data ` — the global shared data table.
2758
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2688
2759
2689
2760
Soupault takes back the following variables:
2690
2761
@@ -2743,6 +2814,8 @@ It has the following variables in its environment:
2743
2814
* ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2744
2815
* ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2745
2816
* ` build_dir ` — the output directory from ` settings.build_dir ` or the ` --build-dir ` option if present.
2817
+ * ` global_data ` — the global shared data table.
2818
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2746
2819
2747
2820
The following variables are taken back by soupault:
2748
2821
@@ -2782,6 +2855,8 @@ It has the following variables in its environment:
2782
2855
* ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2783
2856
* ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2784
2857
* ` build_dir ` — the output directory from ` settings.build_dir ` or the ` --build-dir ` option if present.
2858
+ * ` global_data ` — the global shared data table.
2859
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2785
2860
2786
2861
Soupault takes back the following variables:
2787
2862
@@ -2812,6 +2887,8 @@ It has the following variables in its environment:
2812
2887
* ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2813
2888
* ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2814
2889
* ` build_dir ` — the output directory from ` settings.build_dir ` or the ` --build-dir ` option if present.
2890
+ * ` global_data ` — the global shared data table.
2891
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2815
2892
2816
2893
For a trivial example, here’s how to just write the HTML to the default output file:
2817
2894
@@ -2836,6 +2913,8 @@ It has the following variables in its environment:
2836
2913
* ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2837
2914
* ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2838
2915
* ` build_dir ` — the output directory from ` settings.build_dir ` or the ` --build-dir ` option if present.
2916
+ * ` global_data ` — the global shared data table.
2917
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2839
2918
2840
2919
For a trivial example, here’s how to output generated file size using ` du ` (on UNIX-like systems):
2841
2920
@@ -2844,6 +2923,33 @@ For a trivial example, here’s how to output generated file size using `du` (on
2844
2923
lua_source = '''
2845
2924
page_size = Sys.get_program_output(format("du -h %s", target_file))
2846
2925
Log.info(format("Page size: %s", page_size))
2926
+ '''
2927
+ ```
2928
+
2929
+ <h3 id =" hooks-post-build " >Post-build</h3 >
2930
+
2931
+ The ` post-build ` hook runs after all pages are processed and soupault is about to terminate.
2932
+ It runs once rather than for every page, so it does not have page-specific variables in its environment
2933
+ (like ` page_file ` or ` target_file ` — they only make sense for hooks that run on every page).
2934
+
2935
+ It has the following variables in its environment:
2936
+
2937
+ * ` config ` (aka ` hook_config ` ) — the hook config table.
2938
+ * ` soupault_config ` — the complete soupault config.
2939
+ * ` force ` — true when soupault is called with ` --force ` option, plugins are free to interpret it.
2940
+ * ` site_dir ` — the value from ` settings.site_dir ` or the ` --site-dir ` option if present.
2941
+ * ` build_dir ` — the output directory from ` settings.build_dir ` or the ` --build-dir ` option if present.
2942
+ * ` soupault_pass ` — the number of the pass in the [ two-pass workflow] ( #making-index-data-available-to-every-page ) .
2943
+ * ` global_data ` — the global shared data table.
2944
+
2945
+ Example:
2946
+
2947
+ ``` toml
2948
+ [hooks .post-build ]
2949
+ lua_source = '''
2950
+ Log.debug("The final state of globao_data:")
2951
+ Log.debug(JSON.to_string(global_data))
2952
+ '''
2847
2953
```
2848
2954
2849
2955
## Glossary
0 commit comments