From dc2710bc9507ed5f94fff35f9fe3ccee168fca78 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Wed, 8 Aug 2018 17:14:24 +1200 Subject: [PATCH] Declare readraw and readtext in README --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 2276c31..689c513 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,22 @@ Read, parse, process, and minify another file, and stream the result. |---|---|---|---| |path|Relative or absolute file system path|Y|The path to the file. If it starts with a slash, it is interpreted as an absolute path; otherwise, it's a path relative to the directory of the importee, or the working directory if the input is `stdin`.| +#### `readraw` + +Stream another file. + +|Argument|Format|Required|Description| +|---|---|---|---| +|path|Relative or absolute file system path|Y|The path to the file. If it starts with a slash, it is interpreted as an absolute path; otherwise, it's a path relative to the directory of the importee, or the working directory if the input is `stdin`.| + +#### `readtext` + +Stream another file, replacing any `&`, `"`, `` ` ``, `'`, `<`, and `>` characters with their encoded entity form. + +|Argument|Format|Required|Description| +|---|---|---|---| +|path|Relative or absolute file system path|Y|The path to the file. If it starts with a slash, it is interpreted as an absolute path; otherwise, it's a path relative to the directory of the importee, or the working directory if the input is `stdin`.| + ## Minification ### Theory