diff options
author | Starfall <us@starfall.systems> | 2023-12-05 09:59:19 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-12-05 10:03:27 -0600 |
commit | 90058697439ee3f048f0f42b61ca5ea677e9b5cc (patch) | |
tree | 60b61ef629551112f2e78c6a25c814703dce72f7 /strike/sample/blog | |
parent | a43a3e0c273e50d30561328f090d2fad249c7dd6 (diff) |
strike: merge as subdir
Diffstat (limited to 'strike/sample/blog')
-rw-r--r-- | strike/sample/blog/also-exclude.html | 1 | ||||
-rw-r--r-- | strike/sample/blog/empty.html | 0 | ||||
-rw-r--r-- | strike/sample/blog/exclude.html | 1 | ||||
-rw-r--r-- | strike/sample/blog/happy.html | 1 | ||||
-rw-r--r-- | strike/sample/blog/subdir/index.html | 1 | ||||
-rw-r--r-- | strike/sample/blog/with-frontmatter.html | 6 |
6 files changed, 10 insertions, 0 deletions
diff --git a/strike/sample/blog/also-exclude.html b/strike/sample/blog/also-exclude.html new file mode 100644 index 0000000..6ce0fb1 --- /dev/null +++ b/strike/sample/blog/also-exclude.html @@ -0,0 +1 @@ +This file shouldn't be processed by Strike either. diff --git a/strike/sample/blog/empty.html b/strike/sample/blog/empty.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/strike/sample/blog/empty.html diff --git a/strike/sample/blog/exclude.html b/strike/sample/blog/exclude.html new file mode 100644 index 0000000..d881dce --- /dev/null +++ b/strike/sample/blog/exclude.html @@ -0,0 +1 @@ +This file should be excluded from processing when Strike is processed using strike.ini diff --git a/strike/sample/blog/happy.html b/strike/sample/blog/happy.html new file mode 100644 index 0000000..af5626b --- /dev/null +++ b/strike/sample/blog/happy.html @@ -0,0 +1 @@ +Hello, world! diff --git a/strike/sample/blog/subdir/index.html b/strike/sample/blog/subdir/index.html new file mode 100644 index 0000000..b66efd5 --- /dev/null +++ b/strike/sample/blog/subdir/index.html @@ -0,0 +1 @@ +This file in a subdirectory of the input directory should also be processed. diff --git a/strike/sample/blog/with-frontmatter.html b/strike/sample/blog/with-frontmatter.html new file mode 100644 index 0000000..5195292 --- /dev/null +++ b/strike/sample/blog/with-frontmatter.html @@ -0,0 +1,6 @@ +--- +title=Custom Title +--- +Things before this line should not appear in the output. +--- +Including the delimiter in body content shouldn't be an issue. |