Kroum Tzanev

Results 104 comments of Kroum Tzanev

:+1: This is definitlely a missing feature.

@TomWright thanks for considering this request. May you could document this now in [Format](https://daseldocs.tomwright.me/usage/flags/format) ?

> `star-tex` looks good! When time permits I'll be looking to incorporate your LaTeX libraries into `canvas`, thanks! @tdewolff IMO, the things should go on the opposite direction: `star-tex` to...

> I can't guarantee working on maturing the library, because some features are just too interesting! @tdewolff I can't blame you for preferring to do fun things instead of writing...

@tdewolff Yes, TIFF support CCITT, but, as far as I know, there in no CCITT encoding library in go. Decoding in go is ok, if I remember well.

You can check the result (`C${1}A`) in the [online playground](https://play.golang.org/p/0DhAqjF5VtR). The code is doing "string" replacement, not "regex" one. You can also check the code that I suggest in the...

You are right, the only problem is in the case of non-global substitution. Here is my proposal. ```go package main import ( "fmt" "regexp" ) func main() { var re...

I have made a [proposal](https://github.com/golang/go/issues/40198) to manage this case easily in Go, but it was not accepted (for backward compatibility reasons). So putting the right code generator may help Go...

@firasdib thanks. Here is an alternative code that introduce the missing `ReplaceString` function with limiting parameter `n`. ```go package main import ( "fmt" "regexp" ) func ReplaceString(src, search, repl string,...

To avoid indentation problems you can check [my comment](https://github.com/akatopo/GithubEmoji/issues/10#issuecomment-431965088) in #10. But I agree that it is even better to limit this plugin to markdown only.