fix(markdown): use correct placeholder values for table 5x2 (#421)

This commit is contained in:
xudyang1 2024-03-31 13:02:46 -04:00 committed by GitHub
parent d2b29e88cb
commit ea068f1bec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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."