Skip to content

Commit e3bd262

Browse files
authored
Update cursor-rules.mdc to fix unbalanced backticks
You had 2 opening backticks without closing the outer set. For nested backticks, you use 4 on the outer set. See: https://python-markdown.github.io/extensions/fenced_code_blocks/ Not a biggie but just a little less thinking for Cursor to do if it's formatted correctly.
1 parent eae229d commit e3bd262

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.cursor/rules/cursor-rules.mdc

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ How to add new cursor rules to the project
3737

3838
5. Cursor rules have the following structure:
3939

40-
```
40+
````
4141
---
4242
description: Short description of the rule's purpose
4343
globs: optional/path/pattern/**/*
@@ -62,4 +62,5 @@ function goodExample() {
6262
function badExample() {
6363
// Implementation not following guidelines
6464
}
65-
```
65+
```
66+
````

0 commit comments

Comments
 (0)