@podlite/markdown 0.0.27 → 0.0.28

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
@@ -9300,6 +9300,15 @@ var require_AstTree = __commonJS({
9300
9300
  title: {
9301
9301
  type: "string"
9302
9302
  },
9303
+ foldedLevels: {
9304
+ type: "object",
9305
+ additionalProperties: false,
9306
+ patternProperties: {
9307
+ "^[0-9]+$": {
9308
+ type: "boolean"
9309
+ }
9310
+ }
9311
+ },
9303
9312
  content: {
9304
9313
  $ref: "#/definitions/TocList"
9305
9314
  }
@@ -12065,6 +12074,15 @@ var require_PodliteDocument = __commonJS({
12065
12074
  title: {
12066
12075
  type: "string"
12067
12076
  },
12077
+ foldedLevels: {
12078
+ type: "object",
12079
+ additionalProperties: false,
12080
+ patternProperties: {
12081
+ "^[0-9]+$": {
12082
+ type: "boolean"
12083
+ }
12084
+ }
12085
+ },
12068
12086
  content: {
12069
12087
  $ref: "#/definitions/TocList"
12070
12088
  }
@@ -25087,9 +25105,18 @@ var require_package = __commonJS({
25087
25105
  "../podlite-schema/package.json"(exports, module) {
25088
25106
  module.exports = {
25089
25107
  name: "@podlite/schema",
25090
- version: "0.0.34",
25091
- description: "AST tools for Podlite markup language",
25108
+ version: "0.0.35",
25109
+ description: "AST tools and schema for Podlite markup language \u2014 validate, traverse, and transform document trees",
25092
25110
  main: "./src/index.ts",
25111
+ homepage: "https://podlite.org",
25112
+ bugs: {
25113
+ url: "https://github.com/podlite/podlite/issues"
25114
+ },
25115
+ repository: {
25116
+ type: "git",
25117
+ url: "https://github.com/podlite/podlite.git",
25118
+ directory: "packages/podlite-schema"
25119
+ },
25093
25120
  license: "MIT",
25094
25121
  funding: {
25095
25122
  type: "opencollective",
@@ -25124,10 +25151,16 @@ var require_package = __commonJS({
25124
25151
  test: "yarn g:jest --passWithNoTests"
25125
25152
  },
25126
25153
  keywords: [
25127
- "markdown",
25128
25154
  "podlite",
25129
- "markup",
25130
- "markup-language"
25155
+ "schema",
25156
+ "ast",
25157
+ "syntax-tree",
25158
+ "markup-language",
25159
+ "transform",
25160
+ "visitor",
25161
+ "parser",
25162
+ "markdown",
25163
+ "tree"
25131
25164
  ],
25132
25165
  dependencies: {
25133
25166
  ajv: "^7.2.3",