Blame view

bower_components/prism/tests/languages/gherkin/table_feature.test 950 Bytes
eb240478   Luigi Serra   public room cards...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  Examples: foo

  | start  | eat | left |

  |  <foo> |  5  |  7   |

  	|  20    |  5  |  15  |

  

  ----------------------------------------------------

  

  [

  	["scenario", [["keyword", "Examples:"], ["important", " foo"]]],

  	["table-head", [

  		["punctuation", "|"],

  		["th", " start  "],

  		["punctuation", "|"],

          ["th", " eat "],

          ["punctuation", "|"],

          ["th", " left "],

          ["punctuation", "|"]

      ]],

      ["table-body", [

  		["punctuation", "|"],

  		["outline", "<foo>"],

  		["punctuation", "|"],

  		["td", "  5  "],

  		["punctuation", "|"],

          ["td", "  7   "],

          ["punctuation", "|"],

  

          ["punctuation", "|"],

          ["td", "  20    "],

          ["punctuation", "|"],

          ["td", "  5  "],

          ["punctuation", "|"],

          ["td", "  15  "],

          ["punctuation", "|"]

      ]]

  ]

  

  ----------------------------------------------------

  

  Checks for table heads and table bodies.