Display data inside input value using Jade
问题 I'm fairly new to Jade and am wanting to display some outputted data as the value value of a text input . Like this: input(type="text", name="date", value="THISRIGHTHURR") But only the value needs to be viewpost.date . I've tried multiple ways and none seem to work: input(type="text", name="date", value=viewpost.date) // doesn't work input(type="text", name="date", value=.=viewpost.date) // doesn't work input(type="text", name="date", value=".=viewpost.date") // doesn't work I of course can