I have an issue when I add a link inside a paragraph.
The jade template syntax:
p Here is link to #[a(href='https://google.com/') google link]
p Here is link to #[a(href='https://google.com/') https://google.com/]
http://
https://
It seems you can use a markdown filter to write your link inside the paragraph:
p
| Here is link to
a(href='https://google.com/') https://google.com/
EDIT 1
It also can be done using locals..
{
URL: 'https://google.com/'
}
..and interpolation:
p Here is link to #[a(href='#{URL}') #{URL}]
EDIT 2
If single quotes are not hindrance, just do:
p Here is link to #[a(href='https://google.com/') 'https://google.com/']
EDIT 3
It's exactly the same as the EDIT 1 but without locals:
p Here is link to #[a(href='https://google.com/') #{'https://google.com/'}]