]> git.rocketbowman.com Git - jetsam.git/commitdiff
feat: add snippet for table data
authorKyle Bowman <kyle+github@rocketbowman.com>
Mon, 16 Dec 2024 03:31:47 +0000 (22:31 -0500)
committerKyle Bowman <kyle+github@rocketbowman.com>
Mon, 16 Dec 2024 03:31:47 +0000 (22:31 -0500)
.vscode/jetsam.code-snippets

index aea0aee76176f356b350b0219cdf93fdb8d0fd59..f02f9237a9e2788f31655a0654e4f802cb188232 100644 (file)
@@ -23,7 +23,7 @@
                        "\t\"prefix\":\"$2\",",
                        "\t\"description\":\"$3\",",
                        "\t\"body\": [ ",
-                       "\t\t$0",
+                       "\t\t\"$0\"",
                        "\t]",
                        "}"
                ],
                ],
                "scope":"markdown"
        },
+       "MD Table Data":{
+               "prefix":"td",
+               "description":"Completes an entry to a table row.",
+               "body": [ 
+                       "$1 |$0"
+               ]
+       },
        "MD Code":{
                "prefix":"```",
                "description":"Creates a code block",