Code Monkey home page Code Monkey logo

Comments (6)

eikster-dk avatar eikster-dk commented on August 25, 2024 1

I played around a bit more with this and added the following to my LazyVim configuration and now it's only templ that is used for formatting:

return {
  "stevearc/conform.nvim",
  opts = {
    formatters_by_ft = {
      templ = { "templ" },
    },
  },
}

And I guess that's the end result that we want right? That it's only templ that performs fmt and not the chain of activated LSP's that can handle formatting.

from templ.

eikster-dk avatar eikster-dk commented on August 25, 2024

Continued to experiment a bit this component will also break the lines incorrect

templ PriceInput(name, label, placeholder, value, err string) {
	<div class="sm:col-span-2">
		<label for={ name } class="block text-sm font-medium leading-6 text-white">{ label }</label>
		<div class="relative mt-2">
			<input
				type="text"
				name={ name }
				value={ value }
				placeholder={ placeholder }
				id={ name }
				class={ templ.KV("text-red-500 ring-red-700", hasErr(err)), templ.KV("text-white ring-white/10",!hasErr(err)), "block w-full rounded-md border-0 bg-white/5 py-1.5 shadow-sm ring-1 ring-inset focus:ring-2 focus:ring-inset focus:ring-green-700 sm:text-sm sm:leading-6" }
			/>
			<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3">
				<span class="text-gray-500 sm:text-sm" id="price-currency">DKK</span>
			</div>
			if hasErr(err) {
				<p class="mt-2 text-xs text-red-600">{ err }</p>
			}
		</div>
	</div>
}

after templ fmt it will look like this:

templ PriceInput(name, label, placeholder, value, err string) {
	<div class="sm:col-span-2">
		<label for={ name } class="block text-sm font-medium leading-6 text-white">{ label }</label>
		<div class="relative mt-2">
			<input
				type="text"
				name={ name }
				value={ value }
				placeholder={ placeholder }
				id={ name }
				class={ templ.KV("text-red-500 ring-red-700", hasErr(err)), templ.KV("text-white
      ring-white/10",!hasErr(err)), "block w-full rounded-md border-0 bg-white/5 py-1.5 shadow-sm ring-1 ring-inset focus:ring-2 focus:ring-inset focus:ring-green-700 sm:text-sm sm:leading-6" }
			/>
			<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3">
				<span class="text-gray-500 sm:text-sm" id="price-currency">DKK</span>
			</div>
			if hasErr(err) {
				<p class="mt-2 text-xs text-red-600">{ err }</p>
			}
		</div>
	</div>
}

Err: String literal is not terminated

It only seems to happen from neovim, when I use templ fmt ../ from commandline it seems to be working correctly

from templ.

eikster-dk avatar eikster-dk commented on August 25, 2024

Digging a bit further by enabling and disabling LSP's running on templ files it seems like it's when html-lsp is trying to format the HTML then the formatting of the templ files will result string literal missing termination.

installed version of html-lsp is v4.8.0

I wonder what can be done about this? 🤔

from templ.

joerdav avatar joerdav commented on August 25, 2024

Nice, that seems right to me. Something like the html lsp wouldn't understand how to format a templ file properly.

from templ.

joerdav avatar joerdav commented on August 25, 2024

Does that resolve this issue for you now then?

from templ.

eikster-dk avatar eikster-dk commented on August 25, 2024

Yea it has resolved my issue, so I will just close it :)

from templ.

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.