From 61e19db2c2804896c0f9ba93c4529cac1100d12d Mon Sep 17 00:00:00 2001
From: Akash Ambashankar <akashambashankar@gmail.com>
Date: Tue, 2 Jan 2024 19:13:18 -0500
Subject: [PATCH] Escaped underscores to make "__" visible

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 23d82de..bea9ea2 100644
--- a/README.md
+++ b/README.md
@@ -39,8 +39,8 @@ Thanks!
 | trye         | try:except:else:                  |
 | tryf         | try:except:finally:               |
 | s            | self                              |
-| __           | __magic__                         |
-| ifmain       | if __name__ == "__main__"         |
+| __           | \_\_magic__                       |
+| ifmain       | if \_\_name__ == "\_\_main__"     |
 
 ### Comprehensions
 
@@ -112,4 +112,4 @@ See [changelog](CHANGELOG.md) for all changes and releases.
 
 ## Troubleshooting
 
-If you experience problems with the auto-formatting of certain snippets, make sure you have the option `editor.tabCompletion` set on `onlySnippets` or `on`.
\ No newline at end of file
+If you experience problems with the auto-formatting of certain snippets, make sure you have the option `editor.tabCompletion` set on `onlySnippets` or `on`.