Looking for Co-Maintainers and Contributors

Hi,

I’m planning to fork prettier-plugin-go-template and publish a new npm package.

I’m looking for people who would like to contribute, review PRs, fix bugs, discuss ideas, or help maintain the project.

This is a volunteer-driven project. There are no deadlines, no obligations, and no expectations about how much time anyone should spend on it.

I do not plan to manage people or build a formal organization around the project. Contributors are free to work on what interests them and contribute when they want.

My goal is simply to keep the project useful and sustainable through shared ownership.

If that sounds interesting to you, feel free to join the discussion.

If this isn’t the right place to post this kind of request on this forum, I’ll stop and delete this post. If it’s difficult to have this conversation here, please send me a DM on X or Bluesky(check my GitHub account).

:tada: Released v0.0.1-rc.1 of my Prettier plugin for Go Templates!
Hugo / Go Template users, I’d love your feedback before the stable release.
Let’s make templating a little prettier together :sparkles:

https://www.npmjs.com/package/@htnabe/prettier-plugin-go-template

Actually, this is not a stable version release, you can replace the current not maintained `prettier-plugin-go-template`!

Try doing it like this.

npm i -D @htnabe/prettier-plugin-go-template@rc && npm uninstall prettier-plugin-go-template

Also, try setting up your .prettierrc.json file as follows.

{
  “plugins”: [“@htnabe/prettier-plugin-go-template”],
  “overrides”: [
    {
      “files”: [“*.html”],
      “options”: {
        “parser”: “go-template”
      }
    }
  ]
}

then, run like npx prettier --write .

[Update]

This is a project designed to continue updating the prettier-plugin-go-template, which is no longer being maintained.
Therefore, there shouldn’t be any difference in the formatting results at this time.
In fact, I’d like someont to verify that there really is no difference.
Also, I haven’t been able to update the README yet due to time constraints, but I plan to do so when the stable version is released.