I am trying to make a list of links. When I do:
a href={{.Permalink}} {{.Title}}
I get the links appearing correctly. But when I add:
li a href={{.Permalink}} {{.Title}}
I get, as a single example:
I've tried putting the a tag on the next line, with the same result, only on another line. I've also tried putting = after li, but that gives me an error (expected space, attr name, or end of tag). I tried experimenting, and instead of an li, I tried making the links an h1, but I get the same long string with tags in it. It seems that I can not nest elements?
I ended up solving this issue by changing tabs to spaces. It was apparently causing the issue by messing with the indentation between my ul and li tags, and also when I tried to put the a tag on the next line.
I am trying to make a list of links. When I do: a href={{.Permalink}} {{.Title}} I get the links appearing correctly. But when I add: li a href={{.Permalink}} {{.Title}} I get, as a single example:
I've tried putting the a tag on the next line, with the same result, only on another line. I've also tried putting = after li, but that gives me an error (expected space, attr name, or end of tag). I tried experimenting, and instead of an li, I tried making the links an h1, but I get the same long string with tags in it. It seems that I can not nest elements?