From 0305e3c6b784c2389b233d376c7b1eaf18c1ccd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 29 Nov 2018 21:14:50 +0100 Subject: [PATCH] Document .File.ContentBaseName --- content/en/variables/files.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/en/variables/files.md b/content/en/variables/files.md index ac5376dbd..0a32bc021 100644 --- a/content/en/variables/files.md +++ b/content/en/variables/files.md @@ -33,9 +33,13 @@ The `.File` object contains the following fields: .File.TranslationBaseName : the filename without extension or optional language identifier (e.g., `foo`) +.File.ContentBaseName +: is a either TranslationBaseName or name of containing folder if file is a leaf bundle. + .File.BaseFileName : the filename without extension (e.g., `foo.en`) + .File.Ext : the file extension of the content file (e.g., `md`); this can also be called using `.File.Extension` as well. Note that it is *only* the extension without `.`. @@ -45,4 +49,4 @@ The `.File` object contains the following fields: .File.Dir : given the path `content/posts/dir1/dir2/`, the relative directory path of the content file will be returned (e.g., `posts/dir1/dir2/`) -[Multilingual]: /content-management/multilingual/ \ No newline at end of file +[Multilingual]: /content-management/multilingual/