{"version":3,"file":"zero-md.legacy.min.js","sources":["../node_modules/regenerator-runtime/runtime.js","../src/index.js"],"sourcesContent":["/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nvar runtime = (function (exports) {\n  \"use strict\";\n\n  var Op = Object.prototype;\n  var hasOwn = Op.hasOwnProperty;\n  var undefined; // More compressible than void 0.\n  var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n  var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n  var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n  var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n  function define(obj, key, value) {\n    Object.defineProperty(obj, key, {\n      value: value,\n      enumerable: true,\n      configurable: true,\n      writable: true\n    });\n    return obj[key];\n  }\n  try {\n    // IE 8 has a broken Object.defineProperty that only works on DOM objects.\n    define({}, \"\");\n  } catch (err) {\n    define = function(obj, key, value) {\n      return obj[key] = value;\n    };\n  }\n\n  function wrap(innerFn, outerFn, self, tryLocsList) {\n    // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n    var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n    var generator = Object.create(protoGenerator.prototype);\n    var context = new Context(tryLocsList || []);\n\n    // The ._invoke method unifies the implementations of the .next,\n    // .throw, and .return methods.\n    generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n    return generator;\n  }\n  exports.wrap = wrap;\n\n  // Try/catch helper to minimize deoptimizations. Returns a completion\n  // record like context.tryEntries[i].completion. This interface could\n  // have been (and was previously) designed to take a closure to be\n  // invoked without arguments, but in all the cases we care about we\n  // already have an existing method we want to call, so there's no need\n  // to create a new function object. We can even get away with assuming\n  // the method takes exactly one argument, since that happens to be true\n  // in every case, so we don't have to touch the arguments object. The\n  // only additional allocation required is the completion record, which\n  // has a stable shape and so hopefully should be cheap to allocate.\n  function tryCatch(fn, obj, arg) {\n    try {\n      return { type: \"normal\", arg: fn.call(obj, arg) };\n    } catch (err) {\n      return { type: \"throw\", arg: err };\n    }\n  }\n\n  var GenStateSuspendedStart = \"suspendedStart\";\n  var GenStateSuspendedYield = \"suspendedYield\";\n  var GenStateExecuting = \"executing\";\n  var GenStateCompleted = \"completed\";\n\n  // Returning this object from the innerFn has the same effect as\n  // breaking out of the dispatch switch statement.\n  var ContinueSentinel = {};\n\n  // Dummy constructor functions that we use as the .constructor and\n  // .constructor.prototype properties for functions that return Generator\n  // objects. For full spec compliance, you may wish to configure your\n  // minifier not to mangle the names of these two functions.\n  function Generator() {}\n  function GeneratorFunction() {}\n  function GeneratorFunctionPrototype() {}\n\n  // This is a polyfill for %IteratorPrototype% for environments that\n  // don't natively support it.\n  var IteratorPrototype = {};\n  define(IteratorPrototype, iteratorSymbol, function () {\n    return this;\n  });\n\n  var getProto = Object.getPrototypeOf;\n  var NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n  if (NativeIteratorPrototype &&\n      NativeIteratorPrototype !== Op &&\n      hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {\n    // This environment has a native %IteratorPrototype%; use it instead\n    // of the polyfill.\n    IteratorPrototype = NativeIteratorPrototype;\n  }\n\n  var Gp = GeneratorFunctionPrototype.prototype =\n    Generator.prototype = Object.create(IteratorPrototype);\n  GeneratorFunction.prototype = GeneratorFunctionPrototype;\n  define(Gp, \"constructor\", GeneratorFunctionPrototype);\n  define(GeneratorFunctionPrototype, \"constructor\", GeneratorFunction);\n  GeneratorFunction.displayName = define(\n    GeneratorFunctionPrototype,\n    toStringTagSymbol,\n    \"GeneratorFunction\"\n  );\n\n  // Helper for defining the .next, .throw, and .return methods of the\n  // Iterator interface in terms of a single ._invoke method.\n  function defineIteratorMethods(prototype) {\n    [\"next\", \"throw\", \"return\"].forEach(function(method) {\n      define(prototype, method, function(arg) {\n        return this._invoke(method, arg);\n      });\n    });\n  }\n\n  exports.isGeneratorFunction = function(genFun) {\n    var ctor = typeof genFun === \"function\" && genFun.constructor;\n    return ctor\n      ? ctor === GeneratorFunction ||\n        // For the native GeneratorFunction constructor, the best we can\n        // do is to check its .name property.\n        (ctor.displayName || ctor.name) === \"GeneratorFunction\"\n      : false;\n  };\n\n  exports.mark = function(genFun) {\n    if (Object.setPrototypeOf) {\n      Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);\n    } else {\n      genFun.__proto__ = GeneratorFunctionPrototype;\n      define(genFun, toStringTagSymbol, \"GeneratorFunction\");\n    }\n    genFun.prototype = Object.create(Gp);\n    return genFun;\n  };\n\n  // Within the body of any async function, `await x` is transformed to\n  // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test\n  // `hasOwn.call(value, \"__await\")` to determine if the yielded value is\n  // meant to be awaited.\n  exports.awrap = function(arg) {\n    return { __await: arg };\n  };\n\n  function AsyncIterator(generator, PromiseImpl) {\n    function invoke(method, arg, resolve, reject) {\n      var record = tryCatch(generator[method], generator, arg);\n      if (record.type === \"throw\") {\n        reject(record.arg);\n      } else {\n        var result = record.arg;\n        var value = result.value;\n        if (value &&\n            typeof value === \"object\" &&\n            hasOwn.call(value, \"__await\")) {\n          return PromiseImpl.resolve(value.__await).then(function(value) {\n            invoke(\"next\", value, resolve, reject);\n          }, function(err) {\n            invoke(\"throw\", err, resolve, reject);\n          });\n        }\n\n        return PromiseImpl.resolve(value).then(function(unwrapped) {\n          // When a yielded Promise is resolved, its final value becomes\n          // the .value of the Promise<{value,done}> result for the\n          // current iteration.\n          result.value = unwrapped;\n          resolve(result);\n        }, function(error) {\n          // If a rejected Promise was yielded, throw the rejection back\n          // into the async generator function so it can be handled there.\n          return invoke(\"throw\", error, resolve, reject);\n        });\n      }\n    }\n\n    var previousPromise;\n\n    function enqueue(method, arg) {\n      function callInvokeWithMethodAndArg() {\n        return new PromiseImpl(function(resolve, reject) {\n          invoke(method, arg, resolve, reject);\n        });\n      }\n\n      return previousPromise =\n        // If enqueue has been called before, then we want to wait until\n        // all previous Promises have been resolved before calling invoke,\n        // so that results are always delivered in the correct order. If\n        // enqueue has not been called before, then it is important to\n        // call invoke immediately, without waiting on a callback to fire,\n        // so that the async generator function has the opportunity to do\n        // any necessary setup in a predictable way. This predictability\n        // is why the Promise constructor synchronously invokes its\n        // executor callback, and why async functions synchronously\n        // execute code before the first await. Since we implement simple\n        // async functions in terms of async generators, it is especially\n        // important to get this right, even though it requires care.\n        previousPromise ? previousPromise.then(\n          callInvokeWithMethodAndArg,\n          // Avoid propagating failures to Promises returned by later\n          // invocations of the iterator.\n          callInvokeWithMethodAndArg\n        ) : callInvokeWithMethodAndArg();\n    }\n\n    // Define the unified helper method that is used to implement .next,\n    // .throw, and .return (see defineIteratorMethods).\n    this._invoke = enqueue;\n  }\n\n  defineIteratorMethods(AsyncIterator.prototype);\n  define(AsyncIterator.prototype, asyncIteratorSymbol, function () {\n    return this;\n  });\n  exports.AsyncIterator = AsyncIterator;\n\n  // Note that simple async functions are implemented on top of\n  // AsyncIterator objects; they just return a Promise for the value of\n  // the final result produced by the iterator.\n  exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {\n    if (PromiseImpl === void 0) PromiseImpl = Promise;\n\n    var iter = new AsyncIterator(\n      wrap(innerFn, outerFn, self, tryLocsList),\n      PromiseImpl\n    );\n\n    return exports.isGeneratorFunction(outerFn)\n      ? iter // If outerFn is a generator, return the full iterator.\n      : iter.next().then(function(result) {\n          return result.done ? result.value : iter.next();\n        });\n  };\n\n  function makeInvokeMethod(innerFn, self, context) {\n    var state = GenStateSuspendedStart;\n\n    return function invoke(method, arg) {\n      if (state === GenStateExecuting) {\n        throw new Error(\"Generator is already running\");\n      }\n\n      if (state === GenStateCompleted) {\n        if (method === \"throw\") {\n          throw arg;\n        }\n\n        // Be forgiving, per 25.3.3.3.3 of the spec:\n        // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n        return doneResult();\n      }\n\n      context.method = method;\n      context.arg = arg;\n\n      while (true) {\n        var delegate = context.delegate;\n        if (delegate) {\n          var delegateResult = maybeInvokeDelegate(delegate, context);\n          if (delegateResult) {\n            if (delegateResult === ContinueSentinel) continue;\n            return delegateResult;\n          }\n        }\n\n        if (context.method === \"next\") {\n          // Setting context._sent for legacy support of Babel's\n          // function.sent implementation.\n          context.sent = context._sent = context.arg;\n\n        } else if (context.method === \"throw\") {\n          if (state === GenStateSuspendedStart) {\n            state = GenStateCompleted;\n            throw context.arg;\n          }\n\n          context.dispatchException(context.arg);\n\n        } else if (context.method === \"return\") {\n          context.abrupt(\"return\", context.arg);\n        }\n\n        state = GenStateExecuting;\n\n        var record = tryCatch(innerFn, self, context);\n        if (record.type === \"normal\") {\n          // If an exception is thrown from innerFn, we leave state ===\n          // GenStateExecuting and loop back for another invocation.\n          state = context.done\n            ? GenStateCompleted\n            : GenStateSuspendedYield;\n\n          if (record.arg === ContinueSentinel) {\n            continue;\n          }\n\n          return {\n            value: record.arg,\n            done: context.done\n          };\n\n        } else if (record.type === \"throw\") {\n          state = GenStateCompleted;\n          // Dispatch the exception by looping back around to the\n          // context.dispatchException(context.arg) call above.\n          context.method = \"throw\";\n          context.arg = record.arg;\n        }\n      }\n    };\n  }\n\n  // Call delegate.iterator[context.method](context.arg) and handle the\n  // result, either by returning a { value, done } result from the\n  // delegate iterator, or by modifying context.method and context.arg,\n  // setting context.delegate to null, and returning the ContinueSentinel.\n  function maybeInvokeDelegate(delegate, context) {\n    var method = delegate.iterator[context.method];\n    if (method === undefined) {\n      // A .throw or .return when the delegate iterator has no .throw\n      // method always terminates the yield* loop.\n      context.delegate = null;\n\n      if (context.method === \"throw\") {\n        // Note: [\"return\"] must be used for ES3 parsing compatibility.\n        if (delegate.iterator[\"return\"]) {\n          // If the delegate iterator has a return method, give it a\n          // chance to clean up.\n          context.method = \"return\";\n          context.arg = undefined;\n          maybeInvokeDelegate(delegate, context);\n\n          if (context.method === \"throw\") {\n            // If maybeInvokeDelegate(context) changed context.method from\n            // \"return\" to \"throw\", let that override the TypeError below.\n            return ContinueSentinel;\n          }\n        }\n\n        context.method = \"throw\";\n        context.arg = new TypeError(\n          \"The iterator does not provide a 'throw' method\");\n      }\n\n      return ContinueSentinel;\n    }\n\n    var record = tryCatch(method, delegate.iterator, context.arg);\n\n    if (record.type === \"throw\") {\n      context.method = \"throw\";\n      context.arg = record.arg;\n      context.delegate = null;\n      return ContinueSentinel;\n    }\n\n    var info = record.arg;\n\n    if (! info) {\n      context.method = \"throw\";\n      context.arg = new TypeError(\"iterator result is not an object\");\n      context.delegate = null;\n      return ContinueSentinel;\n    }\n\n    if (info.done) {\n      // Assign the result of the finished delegate to the temporary\n      // variable specified by delegate.resultName (see delegateYield).\n      context[delegate.resultName] = info.value;\n\n      // Resume execution at the desired location (see delegateYield).\n      context.next = delegate.nextLoc;\n\n      // If context.method was \"throw\" but the delegate handled the\n      // exception, let the outer generator proceed normally. If\n      // context.method was \"next\", forget context.arg since it has been\n      // \"consumed\" by the delegate iterator. If context.method was\n      // \"return\", allow the original .return call to continue in the\n      // outer generator.\n      if (context.method !== \"return\") {\n        context.method = \"next\";\n        context.arg = undefined;\n      }\n\n    } else {\n      // Re-yield the result returned by the delegate method.\n      return info;\n    }\n\n    // The delegate iterator is finished, so forget it and continue with\n    // the outer generator.\n    context.delegate = null;\n    return ContinueSentinel;\n  }\n\n  // Define Generator.prototype.{next,throw,return} in terms of the\n  // unified ._invoke helper method.\n  defineIteratorMethods(Gp);\n\n  define(Gp, toStringTagSymbol, \"Generator\");\n\n  // A Generator should always return itself as the iterator object when the\n  // @@iterator function is called on it. Some browsers' implementations of the\n  // iterator prototype chain incorrectly implement this, causing the Generator\n  // object to not be returned from this call. This ensures that doesn't happen.\n  // See https://github.com/facebook/regenerator/issues/274 for more details.\n  define(Gp, iteratorSymbol, function() {\n    return this;\n  });\n\n  define(Gp, \"toString\", function() {\n    return \"[object Generator]\";\n  });\n\n  function pushTryEntry(locs) {\n    var entry = { tryLoc: locs[0] };\n\n    if (1 in locs) {\n      entry.catchLoc = locs[1];\n    }\n\n    if (2 in locs) {\n      entry.finallyLoc = locs[2];\n      entry.afterLoc = locs[3];\n    }\n\n    this.tryEntries.push(entry);\n  }\n\n  function resetTryEntry(entry) {\n    var record = entry.completion || {};\n    record.type = \"normal\";\n    delete record.arg;\n    entry.completion = record;\n  }\n\n  function Context(tryLocsList) {\n    // The root entry object (effectively a try statement without a catch\n    // or a finally block) gives us a place to store values thrown from\n    // locations where there is no enclosing try statement.\n    this.tryEntries = [{ tryLoc: \"root\" }];\n    tryLocsList.forEach(pushTryEntry, this);\n    this.reset(true);\n  }\n\n  exports.keys = function(object) {\n    var keys = [];\n    for (var key in object) {\n      keys.push(key);\n    }\n    keys.reverse();\n\n    // Rather than returning an object with a next method, we keep\n    // things simple and return the next function itself.\n    return function next() {\n      while (keys.length) {\n        var key = keys.pop();\n        if (key in object) {\n          next.value = key;\n          next.done = false;\n          return next;\n        }\n      }\n\n      // To avoid creating an additional object, we just hang the .value\n      // and .done properties off the next function object itself. This\n      // also ensures that the minifier will not anonymize the function.\n      next.done = true;\n      return next;\n    };\n  };\n\n  function values(iterable) {\n    if (iterable) {\n      var iteratorMethod = iterable[iteratorSymbol];\n      if (iteratorMethod) {\n        return iteratorMethod.call(iterable);\n      }\n\n      if (typeof iterable.next === \"function\") {\n        return iterable;\n      }\n\n      if (!isNaN(iterable.length)) {\n        var i = -1, next = function next() {\n          while (++i < iterable.length) {\n            if (hasOwn.call(iterable, i)) {\n              next.value = iterable[i];\n              next.done = false;\n              return next;\n            }\n          }\n\n          next.value = undefined;\n          next.done = true;\n\n          return next;\n        };\n\n        return next.next = next;\n      }\n    }\n\n    // Return an iterator with no values.\n    return { next: doneResult };\n  }\n  exports.values = values;\n\n  function doneResult() {\n    return { value: undefined, done: true };\n  }\n\n  Context.prototype = {\n    constructor: Context,\n\n    reset: function(skipTempReset) {\n      this.prev = 0;\n      this.next = 0;\n      // Resetting context._sent for legacy support of Babel's\n      // function.sent implementation.\n      this.sent = this._sent = undefined;\n      this.done = false;\n      this.delegate = null;\n\n      this.method = \"next\";\n      this.arg = undefined;\n\n      this.tryEntries.forEach(resetTryEntry);\n\n      if (!skipTempReset) {\n        for (var name in this) {\n          // Not sure about the optimal order of these conditions:\n          if (name.charAt(0) === \"t\" &&\n              hasOwn.call(this, name) &&\n              !isNaN(+name.slice(1))) {\n            this[name] = undefined;\n          }\n        }\n      }\n    },\n\n    stop: function() {\n      this.done = true;\n\n      var rootEntry = this.tryEntries[0];\n      var rootRecord = rootEntry.completion;\n      if (rootRecord.type === \"throw\") {\n        throw rootRecord.arg;\n      }\n\n      return this.rval;\n    },\n\n    dispatchException: function(exception) {\n      if (this.done) {\n        throw exception;\n      }\n\n      var context = this;\n      function handle(loc, caught) {\n        record.type = \"throw\";\n        record.arg = exception;\n        context.next = loc;\n\n        if (caught) {\n          // If the dispatched exception was caught by a catch block,\n          // then let that catch block handle the exception normally.\n          context.method = \"next\";\n          context.arg = undefined;\n        }\n\n        return !! caught;\n      }\n\n      for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n        var entry = this.tryEntries[i];\n        var record = entry.completion;\n\n        if (entry.tryLoc === \"root\") {\n          // Exception thrown outside of any try block that could handle\n          // it, so set the completion value of the entire function to\n          // throw the exception.\n          return handle(\"end\");\n        }\n\n        if (entry.tryLoc <= this.prev) {\n          var hasCatch = hasOwn.call(entry, \"catchLoc\");\n          var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n          if (hasCatch && hasFinally) {\n            if (this.prev < entry.catchLoc) {\n              return handle(entry.catchLoc, true);\n            } else if (this.prev < entry.finallyLoc) {\n              return handle(entry.finallyLoc);\n            }\n\n          } else if (hasCatch) {\n            if (this.prev < entry.catchLoc) {\n              return handle(entry.catchLoc, true);\n            }\n\n          } else if (hasFinally) {\n            if (this.prev < entry.finallyLoc) {\n              return handle(entry.finallyLoc);\n            }\n\n          } else {\n            throw new Error(\"try statement without catch or finally\");\n          }\n        }\n      }\n    },\n\n    abrupt: function(type, arg) {\n      for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n        var entry = this.tryEntries[i];\n        if (entry.tryLoc <= this.prev &&\n            hasOwn.call(entry, \"finallyLoc\") &&\n            this.prev < entry.finallyLoc) {\n          var finallyEntry = entry;\n          break;\n        }\n      }\n\n      if (finallyEntry &&\n          (type === \"break\" ||\n           type === \"continue\") &&\n          finallyEntry.tryLoc <= arg &&\n          arg <= finallyEntry.finallyLoc) {\n        // Ignore the finally entry if control is not jumping to a\n        // location outside the try/catch block.\n        finallyEntry = null;\n      }\n\n      var record = finallyEntry ? finallyEntry.completion : {};\n      record.type = type;\n      record.arg = arg;\n\n      if (finallyEntry) {\n        this.method = \"next\";\n        this.next = finallyEntry.finallyLoc;\n        return ContinueSentinel;\n      }\n\n      return this.complete(record);\n    },\n\n    complete: function(record, afterLoc) {\n      if (record.type === \"throw\") {\n        throw record.arg;\n      }\n\n      if (record.type === \"break\" ||\n          record.type === \"continue\") {\n        this.next = record.arg;\n      } else if (record.type === \"return\") {\n        this.rval = this.arg = record.arg;\n        this.method = \"return\";\n        this.next = \"end\";\n      } else if (record.type === \"normal\" && afterLoc) {\n        this.next = afterLoc;\n      }\n\n      return ContinueSentinel;\n    },\n\n    finish: function(finallyLoc) {\n      for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n        var entry = this.tryEntries[i];\n        if (entry.finallyLoc === finallyLoc) {\n          this.complete(entry.completion, entry.afterLoc);\n          resetTryEntry(entry);\n          return ContinueSentinel;\n        }\n      }\n    },\n\n    \"catch\": function(tryLoc) {\n      for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n        var entry = this.tryEntries[i];\n        if (entry.tryLoc === tryLoc) {\n          var record = entry.completion;\n          if (record.type === \"throw\") {\n            var thrown = record.arg;\n            resetTryEntry(entry);\n          }\n          return thrown;\n        }\n      }\n\n      // The context.catch method must only be called with a location\n      // argument that corresponds to a known catch block.\n      throw new Error(\"illegal catch attempt\");\n    },\n\n    delegateYield: function(iterable, resultName, nextLoc) {\n      this.delegate = {\n        iterator: values(iterable),\n        resultName: resultName,\n        nextLoc: nextLoc\n      };\n\n      if (this.method === \"next\") {\n        // Deliberately forget the last sent value so that we don't\n        // accidentally pass it on to the delegate.\n        this.arg = undefined;\n      }\n\n      return ContinueSentinel;\n    }\n  };\n\n  // Regardless of whether this script is executing as a CommonJS module\n  // or not, return the runtime object so that we can declare the variable\n  // regeneratorRuntime in the outer scope, which allows this module to be\n  // injected easily by `bin/regenerator --include-runtime script.js`.\n  return exports;\n\n}(\n  // If this script is executing as a CommonJS module, use module.exports\n  // as the regeneratorRuntime namespace. Otherwise create a new empty\n  // object. Either way, the resulting object will be used to initialize\n  // the regeneratorRuntime variable at the top of this file.\n  typeof module === \"object\" ? module.exports : {}\n));\n\ntry {\n  regeneratorRuntime = runtime;\n} catch (accidentalStrictMode) {\n  // This module should not be running in strict mode, so the above\n  // assignment should always work unless something is misconfigured. Just\n  // in case runtime.js accidentally runs in strict mode, in modern engines\n  // we can explicitly access globalThis. In older engines we can escape\n  // strict mode using a global Function call. This could conceivably fail\n  // if a Content Security Policy forbids using Function, but in that case\n  // the proper solution is to fix the accidental strict mode problem. If\n  // you've misconfigured your bundler to force strict mode and applied a\n  // CSP to forbid Function, and you're not willing to fix either of those\n  // problems, please detail your unique predicament in a GitHub issue.\n  if (typeof globalThis === \"object\") {\n    globalThis.regeneratorRuntime = runtime;\n  } else {\n    Function(\"r\", \"regeneratorRuntime = r\")(runtime);\n  }\n}\n","export class ZeroMd extends HTMLElement {\n  get src () { return this.getAttribute('src') }\n  set src (val) { this.reflect('src', val) }\n  get manualRender () { return this.hasAttribute('manual-render') }\n  set manualRender (val) { this.reflect('manual-render', val) }\n\n  reflect (name, val) {\n    if (val === false) {\n      this.removeAttribute(name)\n    } else {\n      this.setAttribute(name, val === true ? '' : val)\n    }\n  }\n\n  static get observedAttributes () {\n    return ['src']\n  }\n\n  attributeChangedCallback (name, old, val) {\n    if (name === 'src' && this.connected && !this.manualRender && val !== old) {\n      this.render()\n    }\n  }\n\n  constructor (defaults) {\n    super()\n    this.version = '$VERSION'\n    this.config = {\n      markedUrl: 'https://cdn.jsdelivr.net/gh/markedjs/marked@2/marked.min.js',\n      prismUrl: [\n        ['https://cdn.jsdelivr.net/gh/PrismJS/prism@1/prism.min.js', 'data-manual'],\n        'https://cdn.jsdelivr.net/gh/PrismJS/prism@1/plugins/autoloader/prism-autoloader.min.js'\n      ],\n      cssUrls: [\n        'https://cdn.jsdelivr.net/gh/sindresorhus/github-markdown-css@4/github-markdown.min.css',\n        'https://cdn.jsdelivr.net/gh/PrismJS/prism@1/themes/prism.min.css'\n      ],\n      hostCss: ':host{display:block;position:relative;contain:content;}:host([hidden]){display:none;}',\n      ...defaults,\n      ...window.ZeroMdConfig\n    }\n    this.cache = {}\n    this.root = this.hasAttribute('no-shadow') ? this : this.attachShadow({ mode: 'open' })\n    if (!this.constructor.ready) {\n      this.constructor.ready = Promise.all([\n        !!window.marked || this.loadScript(this.config.markedUrl),\n        !!window.Prism || this.loadScript(this.config.prismUrl)\n      ])\n    }\n    this.clicked = this.clicked.bind(this)\n    if (!this.manualRender) {\n      // Scroll to hash id after first render. However, `history.scrollRestoration` inteferes with this on refresh.\n      // It's much better to use a `setTimeout` rather than to alter the browser's behaviour.\n      this.render().then(() => setTimeout(() => this.goto(location.hash), 250))\n    }\n    this.observer = new MutationObserver(async () => {\n      this.observeChanges()\n      if (!this.manualRender) {\n        await this.render()\n      }\n    })\n    this.observeChanges()\n  }\n\n  connectedCallback () {\n    this.connected = true\n    this.fire('zero-md-connected', {}, { bubbles: false, composed: false })\n    this.waitForReady().then(() => {\n      this.fire('zero-md-ready')\n    })\n    if (this.shadowRoot) {\n      this.shadowRoot.addEventListener('click', this.clicked)\n    }\n  }\n\n  disconnectedCallback () {\n    this.connected = false\n    if (this.shadowRoot) {\n      this.shadowRoot.removeEventListener('click', this.clicked)\n    }\n  }\n\n  waitForReady () {\n    const ready = this.connected || new Promise(resolve => {\n      this.addEventListener('zero-md-connected', function handler () {\n        this.removeEventListener('zero-md-connected', handler)\n        resolve()\n      })\n    })\n    return Promise.all([this.constructor.ready, ready])\n  }\n\n  fire (name, detail = {}, opts = { bubbles: true, composed: true }) {\n    if (detail.msg) {\n      console.warn(detail.msg)\n    }\n    this.dispatchEvent(new CustomEvent(name, {\n      detail: { node: this, ...detail },\n      ...opts\n    }))\n  }\n\n  tick () {\n    return new Promise(resolve => requestAnimationFrame(resolve))\n  }\n\n  // Coerce anything into an array\n  arrify (any) {\n    return any ? (Array.isArray(any) ? any : [any]) : []\n  }\n\n  // Promisify an element's onload callback\n  onload (node) {\n    return new Promise((resolve, reject) => {\n      node.onload = resolve\n      node.onerror = err => reject(err.path ? err.path[0] : err.composedPath()[0])\n    })\n  }\n\n  // Load a url or load (in order) an array of urls via <script> tags\n  loadScript (urls) {\n    return Promise.all(this.arrify(urls).map(item => {\n      const [url, ...attrs] = this.arrify(item)\n      const el = document.createElement('script')\n      el.src = url\n      el.async = false\n      attrs.forEach(attr => el.setAttribute(attr, ''))\n      return this.onload(document.head.appendChild(el))\n    }))\n  }\n\n  // Scroll to selected element\n  goto (id) {\n    if (id) {\n      const el = this.root.getElementById(id.substring(1))\n      if (el) {\n        el.scrollIntoView()\n      }\n    }\n  }\n\n  // Hijack same-doc anchor hash links\n  clicked (ev) {\n    if (ev.metaKey || ev.ctrlKey || ev.altKey || ev.shiftKey || ev.defaultPrevented) {\n      return\n    }\n    const a = ev.target.closest('a')\n    if (a && a.hash && a.host === location.host && a.pathname === location.pathname) {\n      this.goto(a.hash)\n    }\n  }\n\n  dedent (str) {\n    str = str.replace(/^\\n/, '')\n    const match = str.match(/^\\s+/)\n    return match ? str.replace(new RegExp(`^${match[0]}`, 'gm'), '') : str\n  }\n\n  getBaseUrl (src) {\n    const a = document.createElement('a')\n    a.href = src\n    return a.href.substring(0, a.href.lastIndexOf('/') + 1)\n  }\n\n  // Runs Prism highlight async; falls back to sync if Web Workers throw\n  highlight (container) {\n    return new Promise(resolve => {\n      const unhinted = container.querySelectorAll('pre>code:not([class*=\"language-\"])')\n      unhinted.forEach(n => {\n        // Dead simple language detection :)\n        const lang = n.innerText.match(/^\\s*</) ? 'markup' : n.innerText.match(/^\\s*(\\$|#)/) ? 'bash' : 'js'\n        n.classList.add(`language-${lang}`)\n      })\n      try {\n        window.Prism.highlightAllUnder(container, true, resolve())\n      } catch {\n        window.Prism.highlightAllUnder(container)\n        resolve()\n      }\n    })\n  }\n\n  // Converts HTML string into node\n  makeNode (html) {\n    const tpl = document.createElement('template')\n    tpl.innerHTML = html\n    return tpl.content.firstElementChild\n  }\n\n  // Construct styles dom and return HTML string\n  buildStyles () {\n    const get = query => {\n      const node = this.querySelector(query)\n      return node ? node.innerHTML || ' ' : ''\n    }\n    const urls = this.arrify(this.config.cssUrls)\n    const html = `<div class=\"markdown-styles\"><style>${\n      this.config.hostCss}</style>${\n      get('template[data-merge=\"prepend\"]')}${\n      get('template:not([data-merge])') || urls.reduce((a, c) => `${a}<link rel=\"stylesheet\" href=\"${c}\">`, '')}${\n      get('template[data-merge=\"append\"]')}</div>`\n    return html\n  }\n\n  // Construct md nodes and return HTML string\n  async buildMd (opts = {}) {\n    const src = async () => {\n      if (!this.src) {\n        return ''\n      }\n      const resp = await fetch(this.src)\n      if (resp.ok) {\n        const md = await resp.text()\n        return window.marked(md, { baseUrl: this.getBaseUrl(this.src), ...opts })\n      } else {\n        this.fire('zero-md-error', { msg: `[zero-md] HTTP error ${resp.status} while fetching src`, status: resp.status, src: this.src })\n        return ''\n      }\n    }\n    const script = () => {\n      const el = this.querySelector('script[type=\"text/markdown\"]')\n      if (!el) { return '' }\n      const md = el.hasAttribute('data-dedent') ? this.dedent(el.text) : el.text\n      return window.marked(md, opts)\n    }\n    const html = `<div class=\"markdown-body${\n      opts.classes ? this.arrify(opts.classes).reduce((a, c) => `${a} ${c}`, ' ') : ''}\">${\n      await src() || script()}</div>`\n    return html\n  }\n\n  // Insert or replace HTML styles string into DOM and wait for links to load\n  async stampStyles (html) {\n    const node = this.makeNode(html)\n    const links = [...node.querySelectorAll('link[rel=\"stylesheet\"]')]\n    const target = [...this.root.children].find(n => n.classList.contains('markdown-styles'))\n    if (target) {\n      target.replaceWith(node)\n    } else {\n      this.root.prepend(node)\n    }\n    await Promise.all(links.map(l => this.onload(l))).catch(err => {\n      this.fire('zero-md-error', { msg: '[zero-md] An external stylesheet failed to load', status: undefined, src: err.href })\n    })\n  }\n\n  // Insert or replace HTML body string into DOM and returns the node\n  stampBody (html) {\n    const node = this.makeNode(html)\n    const target = [...this.root.children].find(n => n.classList.contains('markdown-body'))\n    if (target) {\n      target.replaceWith(node)\n    } else {\n      this.root.append(node)\n    }\n    return node\n  }\n\n  // Start observing for changes in root, templates and scripts\n  observeChanges () {\n    this.observer.observe(this, { childList: true })\n    this.querySelectorAll('template,script[type=\"text/markdown\"]').forEach(n => {\n      this.observer.observe(n.content || n, { childList: true, subtree: true, attributes: true, characterData: true })\n    })\n  }\n\n  async render (opts = {}) {\n    await this.waitForReady()\n    const stamped = {}\n    const pending = this.buildMd(opts)\n    const css = this.buildStyles()\n    if (css !== this.cache.styles) {\n      this.cache.styles = css\n      await this.stampStyles(css)\n      stamped.styles = true\n      await this.tick()\n    }\n    const md = await pending\n    if (md !== this.cache.body) {\n      this.cache.body = md\n      const node = this.stampBody(md)\n      stamped.body = true\n      await this.highlight(node)\n    }\n    this.fire('zero-md-rendered', { stamped })\n  }\n}\n\ncustomElements.define('zero-md', ZeroMd)\n"],"names":["runtime","exports","undefined","Op","Object","prototype","hasOwn","hasOwnProperty","$Symbol","Symbol","iteratorSymbol","iterator","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","toStringTag","define","obj","key","value","defineProperty","enumerable","configurable","writable","err","wrap","innerFn","outerFn","self","tryLocsList","protoGenerator","Generator","generator","create","context","Context","_invoke","state","GenStateSuspendedStart","method","arg","GenStateExecuting","Error","GenStateCompleted","doneResult","delegate","delegateResult","maybeInvokeDelegate","ContinueSentinel","sent","_sent","dispatchException","abrupt","record","tryCatch","type","done","GenStateSuspendedYield","makeInvokeMethod","fn","call","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","this","getProto","getPrototypeOf","NativeIteratorPrototype","values","Gp","defineIteratorMethods","forEach","AsyncIterator","PromiseImpl","invoke","resolve","reject","result","_typeof","__await","then","unwrapped","error","previousPromise","callInvokeWithMethodAndArg","TypeError","info","resultName","next","nextLoc","pushTryEntry","locs","entry","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","push","resetTryEntry","completion","reset","iterable","iteratorMethod","isNaN","length","i","displayName","isGeneratorFunction","genFun","ctor","constructor","name","mark","setPrototypeOf","__proto__","awrap","async","Promise","iter","keys","object","reverse","pop","skipTempReset","prev","charAt","slice","stop","rootRecord","rval","exception","handle","loc","caught","hasCatch","hasFinally","finallyEntry","complete","finish","thrown","delegateYield","module","regeneratorRuntime","accidentalStrictMode","globalThis","Function","ZeroMd","defaults","version","config","markedUrl","prismUrl","cssUrls","hostCss","window","ZeroMdConfig","cache","root","_this","hasAttribute","attachShadow","mode","ready","all","marked","loadScript","Prism","clicked","bind","manualRender","render","setTimeout","goto","location","hash","observer","MutationObserver","observeChanges","getAttribute","val","reflect","removeAttribute","setAttribute","old","connected","fire","bubbles","composed","waitForReady","_this2","shadowRoot","addEventListener","removeEventListener","_this3","handler","detail","opts","msg","console","warn","dispatchEvent","CustomEvent","node","requestAnimationFrame","any","Array","isArray","onload","onerror","path","composedPath","urls","arrify","map","item","_this4","url","attrs","el","document","createElement","src","attr","head","appendChild","id","getElementById","substring","scrollIntoView","ev","metaKey","ctrlKey","altKey","shiftKey","defaultPrevented","a","target","closest","host","pathname","str","match","replace","RegExp","href","lastIndexOf","container","querySelectorAll","n","lang","innerText","classList","add","highlightAllUnder","html","tpl","innerHTML","content","firstElementChild","get","query","_this5","querySelector","reduce","c","_this6","fetch","resp","ok","text","md","baseUrl","getBaseUrl","status","script","dedent","classes","makeNode","links","_toConsumableArray","children","find","contains","replaceWith","prepend","l","_this7","catch","append","observe","childList","_this8","subtree","attributes","characterData","stamped","pending","buildMd","css","buildStyles","styles","stampStyles","tick","body","stampBody","highlight","HTMLElement","customElements"],"mappings":"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"}