Giter Site home page Giter Site logo

Slang doesn't render anymore about kemal HOT 10 CLOSED

renich avatar renich commented on June 12, 2024
Slang doesn't render anymore

from kemal.

Comments (10)

straight-shoota avatar straight-shoota commented on June 12, 2024 2

Alternatively, you can of course override kemal's render with an implementation that delegates to Kilt.render as it was before #618. The only difference is that this implementation won't be implicitly provided by kemal.

from kemal.

mamantoha avatar mamantoha commented on June 12, 2024 2

FYI. I created a shard kemal-kilt which restores removed functionality.

from kemal.

renich avatar renich commented on June 12, 2024 1

Ah... OK. Oh well. That's sad...

Thanks.

from kemal.

straight-shoota avatar straight-shoota commented on June 12, 2024

This is because kilt has been removed as a dependency of kemal (#467).

If you want to use it, you need to add it as a dependency to your shard.yml.
See https://github.com/jeromegn/kilt#Installation for instructions.

Related to #629

from kemal.

renich avatar renich commented on June 12, 2024

@straight-shoota so I did. The result is me geetting the slang markup being spat to back to me.

Here's a minimal example:

#!/usr/bin/env bash

# create app
crystal init app kemal-test
cd $_

# main
cat << EOF > src/kemal-test.cr
require "kemal"
require "kilt"
require "kilt/slang"

get "/" do
  render "src/views/index.slang"
end

Kemal.run
EOF

# my view
mkdir -p src/views
cat << EOF > src/views/index.slang
doctype html
html
  head
    meta name="viewport" content="width=device-width,initial-scale=1.0"
    title This is a test
  body
    h1 Hello, world!

EOF

# add shards
cat << EOF >> shard.yml

dependencies:
  kemal:
    github: kemalcr/kemal

  kilt:
    github: jeromegn/kilt

  slang:
    github: jeromegn/slang


EOF

# install shards
shards install

# try out
crystal run src/kemal-test.cr

from kemal.

renich avatar renich commented on June 12, 2024

btw, I didn't mean the "spitting" part as a bad thing. I'm a spanish native speaker and that's how we say it.. hehe `:)

from kemal.

straight-shoota avatar straight-shoota commented on June 12, 2024

You have to use Kilt.render instead of kemal's render method.

from kemal.

renich avatar renich commented on June 12, 2024

Of course. Thank you.

from kemal.

renich avatar renich commented on June 12, 2024

For what is worth, this actually works:

# create app
crystal init app kemal-test
cd $_

# main
cat << EOF > src/kemal-test.cr
require "kemal"
require "kilt"
require "kilt/slang"

macro render(filename, layout)
  __content_filename__ = {{filename}}
  content = render {{filename}}
  render {{layout}}
end

# Render view with the given filename.
macro render(filename)
  Kilt.render({{filename}})
end

get "/" do
  render "src/views/index.slang"
end

Kemal.run
EOF

# my view
mkdir -p src/views
cat << EOF > src/views/index.slang
doctype html
html
  head
    meta name="viewport" content="width=device-width,initial-scale=1.0"
    title This is a test
  body
  	h1 Hello, world!

EOF

# add shards
cat << EOF >> shard.yml

dependencies:
  kemal:
    github: kemalcr/kemal

  kilt:
    github: jeromegn/kilt

  slang:
    github: jeromegn/slang


EOF

# install shards
shards install

# try out
crystal run src/kemal-test.cr

from kemal.

sdogruyol avatar sdogruyol commented on June 12, 2024

Thank you @mamantoha 🙏

from kemal.

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.