From ca1ffe0145f7c7384184348d8ea956ab6ce5676b Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Thu, 10 Mar 2022 19:06:27 +0400 Subject: [PATCH] add unreal conditinals recipie --- src/content/index.ts | 13 +++++++++++++ src/content/recipies/unreal-conditionals.mdx | 17 +++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 src/content/recipies/unreal-conditionals.mdx diff --git a/src/content/index.ts b/src/content/index.ts index 2fa1450..ea92984 100644 --- a/src/content/index.ts +++ b/src/content/index.ts @@ -78,6 +78,9 @@ import * as theFiveYeys from "!babel-loader!@lingdocs/mdx-loader!./writing/the-f // @ts-ignore import * as typingIssues from "!babel-loader!@lingdocs/mdx-loader!./writing/typing-issues.mdx"; +// @ts-ignore +import * as unrealConditionals from "!babel-loader!@lingdocs/mdx-loader!./recipies/unreal-conditionals.mdx"; + // @ts-ignore import * as games from "!babel-loader!@lingdocs/mdx-loader!./games.mdx"; @@ -259,6 +262,16 @@ const contentTree = [ }, ], }, + { + heading: "Recipies 👩‍🍳", + subdirectory: "recipies", + chapters: [ + { + import: unrealConditionals, + slug: "unreal-conditionals", + }, + ], + }, { import: games, slug: "games", diff --git a/src/content/recipies/unreal-conditionals.mdx b/src/content/recipies/unreal-conditionals.mdx new file mode 100644 index 0000000..e2af995 --- /dev/null +++ b/src/content/recipies/unreal-conditionals.mdx @@ -0,0 +1,17 @@ +--- +title: Unreal Conditionals +--- + +#### A. If something was true +- currently + - past subjunctive equative + - unreal verb +- in the past + - past subjunctive equative / perfect +#### B. Then something else would be true +- currently + - continuous past / ba + continuous past + - "would be" equative +- in the past + - "would be" equative / perfect + - ba + past subjunctive equative \ No newline at end of file