Giter Site home page Giter Site logo

Comments (3)

a-h avatar a-h commented on June 18, 2024

You can use standard <style> elements within templ - it sounds like the docs need to be improved to explain that. 😁

It's completely valid to do something like:

package testrawelements

templ Example() {
	<html>
		<head></head>
		<body>
			<style><!-- Some stuff --></style>
			<style>
                            .customClass {
                              border: 1px solid black;
                            }
                         </style>
			<script type="text/javascript">
                              $("div").marquee();
                              function test() {
                                 window.open("https://example.com")
                              }
                         </script>
			<h1>Hello</h1>
		</body>
	</html>
}

And you'll get the CSS class and raw script content included in the output.

If you're interested in what that looks like, there's a "raw" element parser which doesn't try to parse the content of script and style elements at https://github.com/a-h/templ/blob/main/parser/v2/raw.go

The behaviour is covered in this unit test: https://github.com/a-h/templ/tree/main/generator/test-raw-elements

Thanks for trying out templ, and taking the time to ask questions and raise issues!

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.