Code Monkey home page Code Monkey logo

Comments (4)

Zachatoo avatar Zachatoo commented on June 20, 2024

They run in parallel, which means they're running at the same time and likely hitting a race condition. Those are two separate examples, not meant to be used together like that.

If you want to run them sequentially, you can do it like this.

<%*
tp.hooks.on_all_templates_executed(async () => {
  // Update frontmatter after template finishes executing
  const file = tp.file.find_tfile(tp.file.path(true));
  await app.fileManager.processFrontMatter(file, (frontmatter) => {
    frontmatter["key"] = "value";
  });
  // Run a command from another plugin that modifies the current file, after Templater has updated the file
  app.commands.executeCommandById("obsidian-linter:lint-file");
});
-%>

from templater.

Martin-Milbradt avatar Martin-Milbradt commented on June 20, 2024

Oops. Sadly, neither work for me (neither separate nor sequentially).
Still nothing in the console.

from templater.

Zachatoo avatar Zachatoo commented on June 20, 2024

Can you try it in the sandbox vault? Here's the steps I took to verify I didn't have anything weird on my system, worked for me.

  1. Open the sandbox vault.
  2. Install the Templater and Linter plugins.
  3. Create a folder to put your templates in.
  4. Add the code from my previous message as the note contents for the template.
  5. In Templater settings, add your templates folder as your template folder location.
  6. Open a note.
  7. Run the Templater: Open Insert Template modal comand and select your template from step 4.

Does it still not work for you after these steps?

If it does work after these steps, there must be a setting or another plugin that is causing it to not work for you.

from templater.

Martin-Milbradt avatar Martin-Milbradt commented on June 20, 2024

It's adding the frontmatter now, but not linting:
image
After linting manually:
image

The behavior is identical for Open Insert Template modal and Create new note from template.

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.