Skip to content

Commit

Permalink
fix(markdown): use correct placeholder values for table 5x2 (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
xudyang1 authored Mar 31, 2024
1 parent d2b29e8 commit ea068f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions snippets/markdown.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@
"Insert 5x2 table": {
"prefix": "5x2table",
"body": [
"| ${1:Column1} | ${2:Column2} |",
"| -------------- | --------------- |",
"| ${3:Item1.1} | ${4:Item2.1} |",
"| ${4:Item1.2} | ${5:Item2.2} |",
"| ${6:Item1.3} | ${7:Item2.3} |",
"| ${8:Item1.4} | ${9:Item2.4} |",
"| ${1:Column1} | ${2:Column2} |",
"|--------------- | --------------- |",
"| ${3:Item1.1} | ${4:Item2.1} |",
"| ${5:Item1.2} | ${6:Item2.2} |",
"| ${7:Item1.3} | ${8:Item2.3} |",
"| ${9:Item1.4} | ${10:Item2.4} |",
"${0}"
],
"description": "Insert table with 5 rows and 2 columns. First row is heading."
Expand Down

0 comments on commit ea068f1

Please sign in to comment.