@podlite/markdown 0.0.16 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.esm.js CHANGED
@@ -6753,6 +6753,9 @@ var require_AstTree = __commonJS({
6753
6753
  {
6754
6754
  $ref: "#/definitions/BlockInput"
6755
6755
  },
6756
+ {
6757
+ $ref: "#/definitions/BlockInclude"
6758
+ },
6756
6759
  {
6757
6760
  $ref: "#/definitions/BlockPara"
6758
6761
  },
@@ -7352,6 +7355,58 @@ var require_AstTree = __commonJS({
7352
7355
  "type"
7353
7356
  ]
7354
7357
  },
7358
+ BlockInclude: {
7359
+ type: "object",
7360
+ properties: {
7361
+ name: {
7362
+ type: "string",
7363
+ enum: [
7364
+ "include"
7365
+ ]
7366
+ },
7367
+ type: {
7368
+ type: "string",
7369
+ enum: [
7370
+ "block"
7371
+ ]
7372
+ },
7373
+ location: {
7374
+ $ref: "#/definitions/Location"
7375
+ },
7376
+ content: {
7377
+ type: "array",
7378
+ items: {
7379
+ $ref: "#/definitions/PodNode"
7380
+ }
7381
+ },
7382
+ margin: {
7383
+ type: "string"
7384
+ },
7385
+ config: {
7386
+ type: "array",
7387
+ items: {
7388
+ anyOf: [
7389
+ {
7390
+ $ref: "#/definitions/BrokenConfigItem"
7391
+ },
7392
+ {
7393
+ $ref: "#/definitions/ConfigItem"
7394
+ }
7395
+ ]
7396
+ }
7397
+ },
7398
+ id: {
7399
+ type: "string"
7400
+ }
7401
+ },
7402
+ required: [
7403
+ "content",
7404
+ "location",
7405
+ "margin",
7406
+ "name",
7407
+ "type"
7408
+ ]
7409
+ },
7355
7410
  BlockPara: {
7356
7411
  type: "object",
7357
7412
  properties: {
@@ -7619,6 +7674,9 @@ var require_AstTree = __commonJS({
7619
7674
  {
7620
7675
  $ref: "#/definitions/BlockInput"
7621
7676
  },
7677
+ {
7678
+ $ref: "#/definitions/BlockInclude"
7679
+ },
7622
7680
  {
7623
7681
  $ref: "#/definitions/BlockPara"
7624
7682
  },
@@ -9447,6 +9505,9 @@ var require_PodliteDocument = __commonJS({
9447
9505
  {
9448
9506
  $ref: "#/definitions/BlockInput"
9449
9507
  },
9508
+ {
9509
+ $ref: "#/definitions/BlockInclude"
9510
+ },
9450
9511
  {
9451
9512
  $ref: "#/definitions/BlockPara"
9452
9513
  },
@@ -10046,6 +10107,58 @@ var require_PodliteDocument = __commonJS({
10046
10107
  "type"
10047
10108
  ]
10048
10109
  },
10110
+ BlockInclude: {
10111
+ type: "object",
10112
+ properties: {
10113
+ name: {
10114
+ type: "string",
10115
+ enum: [
10116
+ "include"
10117
+ ]
10118
+ },
10119
+ type: {
10120
+ type: "string",
10121
+ enum: [
10122
+ "block"
10123
+ ]
10124
+ },
10125
+ location: {
10126
+ $ref: "#/definitions/Location"
10127
+ },
10128
+ content: {
10129
+ type: "array",
10130
+ items: {
10131
+ $ref: "#/definitions/PodNode"
10132
+ }
10133
+ },
10134
+ margin: {
10135
+ type: "string"
10136
+ },
10137
+ config: {
10138
+ type: "array",
10139
+ items: {
10140
+ anyOf: [
10141
+ {
10142
+ $ref: "#/definitions/BrokenConfigItem"
10143
+ },
10144
+ {
10145
+ $ref: "#/definitions/ConfigItem"
10146
+ }
10147
+ ]
10148
+ }
10149
+ },
10150
+ id: {
10151
+ type: "string"
10152
+ }
10153
+ },
10154
+ required: [
10155
+ "content",
10156
+ "location",
10157
+ "margin",
10158
+ "name",
10159
+ "type"
10160
+ ]
10161
+ },
10049
10162
  BlockPara: {
10050
10163
  type: "object",
10051
10164
  properties: {
@@ -10313,6 +10426,9 @@ var require_PodliteDocument = __commonJS({
10313
10426
  {
10314
10427
  $ref: "#/definitions/BlockInput"
10315
10428
  },
10429
+ {
10430
+ $ref: "#/definitions/BlockInclude"
10431
+ },
10316
10432
  {
10317
10433
  $ref: "#/definitions/BlockPara"
10318
10434
  },
@@ -18268,6 +18384,7 @@ var require_grammar = __commonJS({
18268
18384
  "defn",
18269
18385
  "formula",
18270
18386
  "head",
18387
+ "include",
18271
18388
  "input",
18272
18389
  "item",
18273
18390
  "markdown",
@@ -24963,7 +25080,7 @@ var require_package = __commonJS({
24963
25080
  "../podlite-schema/package.json"(exports, module) {
24964
25081
  module.exports = {
24965
25082
  name: "@podlite/schema",
24966
- version: "0.0.23",
25083
+ version: "0.0.25",
24967
25084
  description: "AST tools for Podlite markup language",
24968
25085
  main: "./src/index.ts",
24969
25086
  license: "MIT",