Lowercase with Jade Template

I use jade in the project nodejs

Unable to determine how to define filters.

I have categories that I want to display in the selection box, lowercase and uppercase.

select
  each cat in categories
    option(value="lowercase(#{cat})") uppercase(#{cat})

any idea?

+5
source share
2 answers

Why don't you use your own JavaScript functions for this?

select
  each cat in categories
    option(value=cat.toLowerCase())= cat.toUpperCase()
+9
source

You can also use:

select
  each cat in categories
    option(value=#{cat.toLowerCase()}) #{cat.toUpperCase()}
+1
source

All Articles