Sridhar Ratnakumar

Results 814 comments of Sridhar Ratnakumar

Number 2 is not expected behaviour. Sent from ProtonMail mobile -------- Original Message -------- On Feb. 8, 2021, 2:04 p.m., arkoort wrote: > Sorry, my English is very poor. I...

This works as a workaround ```markdown [[[guide]]]{.mylink} ``` This is same as your span example (number 4) except we use a wiki-link instead of plain text in the span body....

Currently, the order is determined from `order` key. If that doesn't exist, then note title is used. If there is no title, then filename is used: https://github.com/srid/emanote/blob/71abc42e29b3355a0acdce922cf1bf53a64e12bb/src/Emanote/View/Template.hs#L175-L178 You are asking...

@dzackgarza That makes sense; done in df32b04.

Hmm, yea we have to escape that `#` in the URL, otherwise browser will interpret it as HTML anchors.

Fix would probably go here: https://github.com/srid/emanote/blob/f578519a0e1be836714104f9d5698923456367e3/src/Emanote/Route/SiteRoute/Type.hs#L158-L160 and https://github.com/srid/emanote/blob/f578519a0e1be836714104f9d5698923456367e3/src/Emanote/Route/SiteRoute/Type.hs#L129-L131

> Just saw more of the tag index, and it seems to fetch notes with `##...`, but clicking to them don't go to their list of notes The software should...

Problem exists also in `metadata.tpl` We are constructing tag URL manually, and that's wrong (`${value}` is not encoded here). Should just pass the encoded URL as template var. --- By...

Does it work if you override the default? ``` package = emanote.packages.${builtins.currentSystem}.default; ``` https://emanote.srid.ca/tips/nix

Hmm. I don't use this module; it was [added](https://github.com/srid/emanote/commits?author=rvl) by @rvl originally, so maybe Rodney has ideas? By the way, one of these days we should refactor and consolidate this...