Code Monkey home page Code Monkey logo

Comments (4)

McGlear avatar McGlear commented on September 27, 2024

Wild guess: You are running into trouble because Templater does not create a new tp-object when you call tp.file.create_new, so there are no seperate instances of tp and thus tp.file.title is not scoped differently per file.
However, I do not understand your template to begin with - why call that template file recursively when you are iterating over all folders anyway? What is the purpose of using both the for-loop and recursion?

To achieve what you are trying to do (maybe? possibly? who knows?), why not just use the loop to create the files and parse the content like this:

<%*
var folders = app.vault.getAllLoadedFiles().filter(x => x instanceof tp.obsidian.TFolder);
for (i in folders) {
   var folder = folders[i];
   var file = app.vault.getFileByPath(`${folder.path}/${folder.name}.md`);
   if (folder.parent !== null && file === null) {  // avoid duplicate generation
      tp.file.create_new(`Title: ${folder.name}`, folder.name, false, folder);
   }
}
-%>

from templater.

imagebuilder1837 avatar imagebuilder1837 commented on September 27, 2024

Thanks for your reply. Does this mean that Templater has no plans to support recursion?

from templater.

Zachatoo avatar Zachatoo commented on September 27, 2024

Templater does support recursion. The Templater file module does not support the concurrent creation of files. If you create the files in sequence, the template works fine. There are no plans to adjust how this works, unless someone wants to volunteer to try to fix this.

Title: <% tp.file.title %>
<%*
var folders = app.vault.getAllLoadedFiles().filter(x => x instanceof tp.obsidian.TFolder);
for (i in folders) {
   var folder = folders[i];
   var file = app.vault.getFileByPath(`${folder.path}/${folder.name}.md`);
   if (folder.parent !== null && file === null) {  // avoid duplicate generation
      // ADD AWAIT BELOW
      await tp.file.create_new(tp.file.find_tfile('template'), folder.name, false, folder);
   }
}
-%>

from templater.

Zachatoo avatar Zachatoo commented on September 27, 2024

This is a duplicate of #1080 , marking as closed

from templater.

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.