From f5ec1838530098e9b4777eacfa1e178bbc6e03d2 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 21 Feb 2025 19:14:23 +0000 Subject: [PATCH] docs: use GitHub's supported markdown callout syntax --- lib/init.luau | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/init.luau b/lib/init.luau index 12d2f54..f2a39a8 100644 --- a/lib/init.luau +++ b/lib/init.luau @@ -242,11 +242,10 @@ end Resolves the path of the entry based on its relationship with other entries. It is recommended to use this method instead of accessing the `name` property directly, although they should be equivalent. - :::warning - Never use this method when extracting files from the ZIP, since it can contain absolute paths - (say `/etc/passwd`) referencing directories outside the current directory (say `/tmp/extracted`), - causing unintended overwrites of files. - ::: + > [!WARNING] + > Never use this method when extracting files from the ZIP, since it can contain absolute paths + > (say `/etc/passwd`) referencing directories outside the current directory (say `/tmp/extracted`), + > causing unintended overwrites of files. @return string -- The path of the entry ]=]