From 2bbc538837bb2fa9df53f22f8332eef9faf11ef3 Mon Sep 17 00:00:00 2001 From: Ben Pevsner Date: Fri, 8 Mar 2024 23:09:21 +0000 Subject: [PATCH] Remove unnecessary log (#23) --- src/index.ts | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/index.ts b/src/index.ts index 7f9c1b8..bd7c487 100644 --- a/src/index.ts +++ b/src/index.ts @@ -31,24 +31,3 @@ export { Recipe, Parser }; export * from './Recipe'; export * from './Parser'; export * from './cooklang'; - -const p = new Parser({ includeStepNumber: true }); - -console.log(p.parse(` ->> source: https://www.youtube.com/watch?v=oTyVtAAKPRo ->> tags: [ breakfast ] ->> description: It's scrambled egg, with kimchi, and miso soup ->> servings: 1 - -Crack @eggs{2} into a #bowl, and beat with chopsticks - -Make @Kombu broth (or dashi) - -Heat a #small pan{} to high heat with #cooking oil{} - -Slowly stir eggs onto pan, cook for about ~{10-15%sec}, then remove and add @sesame oil{} and @kimchi - -Stir @miso paste{} into kombu broth, and bring to boil - -Pour the soup into the egg-stirring bowl, and top with chopped @scallions -`));