From 4dee1fd46327206ec8720927fd81615d9cb54b6a Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Mon, 19 Jul 2021 06:28:58 +0800 Subject: [PATCH] docs: tag bundler code blocks as bash (#11440) --- docs/tools/bundler.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tools/bundler.md b/docs/tools/bundler.md index 87cd17817e..10df9c8bb5 100644 --- a/docs/tools/bundler.md +++ b/docs/tools/bundler.md @@ -3,8 +3,8 @@ `deno bundle [URL]` will output a single JavaScript file, which includes all dependencies of the specified input. For example: -``` -> deno bundle https://deno.land/std@$STD_VERSION/examples/colors.ts colors.bundle.js +```bash +deno bundle https://deno.land/std@$STD_VERSION/examples/colors.ts colors.bundle.js Bundle https://deno.land/std@$STD_VERSION/examples/colors.ts Download https://deno.land/std@$STD_VERSION/examples/colors.ts Download https://deno.land/std@$STD_VERSION/fmt/colors.ts @@ -15,7 +15,7 @@ If you omit the out file, the bundle will be sent to `stdout`. The bundle can just be run as any other module in Deno would: -``` +```bash deno run colors.bundle.js ```