Guest User

Untitled

a guest
Feb 19th, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. The separator between any key/value relationship. (= in [key="value"])
  2.  
  3. punctuation.delimiter.assignment
  4.  
  5. The start and end of a block comment. (/**/ in [/* comment */])
  6.  
  7. punctuation.delimiter.comment
  8.  
  9. Marks the borders between columns in markup tables. (| in [|col|col|col|])
  10.  
  11. punctuation.delimiter.column
  12.  
  13. Marks the start and end point of embedded languages, such as PHP inside HTML. (<%%> in [<% value %>])
  14.  
  15. punctuation.delimiter.embedded
  16.  
  17. Marks the start and end of a function block. ({} in [function {}])
  18.  
  19. punctuation.delimiter.function
  20.  
  21. Marks the borders between columns in markup tables. (+- in [+----+----+])
  22.  
  23. punctuation.delimiter.row
  24.  
  25. Marks the start and end of a section of code, such as a CSS rule. ({} in [html {}])
  26.  
  27. punctuation.delimiter.section
  28.  
  29. Marks the start and end of a tag, such as an HTML tag. (</> in [<tag></tag>])
  30.  
  31. punctuation.delimiter.tag
  32.  
  33. The start of a comment that only spans a line with no end delimiter. (# in [# comment])
  34.  
  35. punctuation.marker.comment
  36.  
  37. Denotes the start of a header element. (## in [## Header Level 2 ##])
  38.  
  39. punctuation.marker.header
  40.  
  41. Denotes the difference between a regular link and an image link. (! in [![Alt text][url]])
  42.  
  43. punctuation.marker.image
  44.  
  45. Marks the start of some sort of item, for instance a list in Markdown. (* in [* List item])
  46.  
  47. punctuation.marker.item
  48.  
  49. The start of a blockquoted paragraph. (> in [> Text])
  50.  
  51. punctuation.marker.quote
  52.  
  53. Any set of parentheses used to group items, such as in a regexp. (() in [(?=")])
  54.  
  55. punctuation.parenthesis
  56.  
  57. Any set of delimeters for string.quoted.*
  58.  
  59. punctuation.quote
  60.  
  61. Mainly for separating arguments in functions. (, in [function(arg,arg)])
  62.  
  63. punctuation.separator.comma
  64.  
  65. Any character that denotes the end of a statement when there was no starting delimiter. (; in [print "foo\n";])
  66.  
  67. punctuation.terminator.statement
  68.  
  69. Delimiter Singular
  70.  
  71. function(arg, arg) [,]
  72. key: value; [:]
  73. key="value" [=]
  74.  
  75. Delimiter Pairs
  76.  
  77. html > body { } [{}]
  78. /* comment */ [/**/]
  79. |table| [|]
  80. +-------------+ [+-]
  81. <% variable %> [<%%>]
  82. <tag></tag> [</>]
Add Comment
Please, Sign In to add comment