Esteban C Borsani

Results 53 issues of Esteban C Borsani

Implement links preview for links placed in their own line. Use open-graph (og). Generating the content server side would require a task and re-parsing the raw comment. Check it was...

feature

Optional features are a maintenance burden. For those wondering, they are usually the settings with a vale of `False`. The main issue is they are not well maintained, as they...

wontfix

Basically, topic's actions (topic pinned, etc) are not being counted as comments and that is ok, but... actions are actually comments and that creates some issues. The _unread comments count_...

bug

And put it in order: "console", "file", "mail_admins" (coz if there's an error with email then file never get logged). Make it max 1 (or 2 if 1 is not...

enhancement
high-priority

See #207 for the discussion.

Changes: * Create/update mention on comment update/edit if the comment's date is greater/equal than the notification's date. The comment's date is always the same regardless of updates, so it should...

see https://www.regular-expressions.info/branchreset.html

API spec: ```nim func re(s: string): Regex func re(s: static string): static[Regex] func group(m: RegexMatch; i: int): Slice[int] func group(m: RegexMatch; s: string): Slice[int] func groupCount(m: RegexMatch): int func groupNames(m:...

Add support to match on binary input. The `-u` flag is not enough because the input is iterated as Runes. The Regex object should contain a `binary_mode` flag so the...

Capturing all group repetitions (even if there are no repetitions) makes the matching take unbounded space. I think it'd be better to capture only the last group repetition, as that's...