Giter VIP home page Giter VIP logo

Comments (7)

dy avatar dy commented on July 22, 2024

Done this via build.js script - same result. There’s no collections data in templates.

var Metalsmith = require('metalsmith');
var drafts = require('metalsmith-drafts');
var markdown = require('metalsmith-markdown');
var permalinks = require('metalsmith-permalinks');
var templates = require('metalsmith-templates');
var collections = require('metalsmith-collections');


var ms = Metalsmith(__dirname)
    .source('./content')
    .destination('./_site')
    .use(drafts())
    .use(collections())
    .use(markdown())
    .use(permalinks(':title'))
    .use(templates({
        engine: 'swig',
        directory: 'templates'
    }));


ms.build(function(err) {
    if (err) throw err;
});

base.html

<!doctype html>
{{ collections }}

test.md

---
title: Test-page
collections: test
---

from collections.

dy avatar dy commented on July 22, 2024

Hello! @travisjeffery @tj @lancejpollard
Any response? How can I contribute? I’m not skilled enough to catch the problem.
It seems like metalsmith-templates is invoked before metalsmith-collections.

from collections.

dy avatar dy commented on July 22, 2024

Wow. Simple changing the "order" of plugins in config solved the issue.

"plugins": {
    "metalsmith-collections": {},  goes "first"
    "metalsmith-templates": {
      "engine": "swig",
      "directory": "templates"
    }
  }

That’s unfortunate, as there’s no order of plugins in config.

from collections.

dy avatar dy commented on July 22, 2024

Now I get ∞ recursion in swig, just trying to print {{ collections }} in template

from collections.

leo60228 avatar leo60228 commented on July 22, 2024

@dfcreative 2nd issue is separate, first is because the collections are generated after they're used.

from collections.

MegaJ avatar MegaJ commented on July 22, 2024

@dfcreative Your second error is probably because collections has nested elements that refer to themselves. I'm gussing swig might be doing something like a JSON.stringify(), which errors out in such cases.

Are you still using metalsmith?

from collections.

webketje avatar webketje commented on July 22, 2024

Closing as stale and insufficient debug info

from collections.

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.