Giter Club home page Giter Club logo

Comments (1)

johnagan avatar johnagan commented on May 17, 2024

I dug through the code and realized that Markdoc.transform() cascades a resolve() call through the tree before calling the tag's custom transform()... which seems strange to me 🤔 Maybe there should be a custom resolver per tag or something.

I ended up having to hack a solution by walking the tree and saving the original children for certain tags

const ast = Markdoc.parse(source);

for (const node of ast.walk()) {
  if (config.tags[node.tag]) {
    node.original = [...node.children];     // save original ast
  }
}

then in my tag I pull that template and use the root transform

const custom = {
  transform(node, config) {
      const variables = { ...config.variables, ...scopedVars };
      return Markdoc.transform(node.original, { ...config, variables });
  }
}

So if folks are looking for a way to loop through an array and render, here's my very hacky solution.

// the array of data to loop through
const lines = [{ text: "hello" }, { text: "world" }];

// the template to use for each iteration of the loop
const source = `
{% each items=$lines %}
{% $text %}
{% /each %}
`;

// the custom tag's transform logic
const each = {
  attributes: {
    items: {
      type: Array,
      required: true,
    },
  },
  transform(node, config) {
    return node.attributes.items.map((item) => {
      const variables = { ...config.variables, ...item };
      return Markdoc.transform(node.original, { ...config, variables });
    });
  },
};

const ast = Markdoc.parse(source);
const config = { tags: { each }, variables: { lines } };

// yuk! hack to save the original ast (before it's resolved)
for (const node of ast.walk()) {
  if (config.tags[node.tag]) {
    node.original = [...node.children];
  }
}

const content = Markdoc.transform(ast, config);

const html = Markdoc.renderers.html(content);

from markdoc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.