Veith Zäch

Results 9 comments of Veith Zäch

Just add following to **~/themes/hugo-material-docs/layouts/_default/single.html** ``` {{ template "_internal/disqus.html" . }} ``` And in your **config.toml** add ``` ... [params] ... disqusShortname = "xyz" ... ```

Not so beautiful, but this seems to work: ```go import "github.com/iv-p/mapaccess" var functions = map[string]govaluate.ExpressionFunction{ "GetStringFromMap": func(args ...interface{}) (interface{}, error) { return mapaccess.Get(args[0], args[1].(string)) }, } In your evaluation you...

This would be a nice feature, because a lot of the events of a web component is a custom event. Having `CustomEvent` only as documentation is not enough. But this...

After thinking for a while about that topic, it seems to me that the OpenApi and Typescript idea is not a good solution. The [schema](https://github.com/webcomponents/custom-elements-manifest/blob/efaf2fc1ca3dcd93e4f392e5d9c72840813ad5ea/schema.json#L619) contains already a `FunctionDeclaration`, `ClassDeclaration`,...

@grimly There is more then the documentation [use case](https://github.com/webcomponents/custom-elements-manifest#use-cases). [Editor Support](https://github.com/webcomponents/custom-elements-manifest#editor-support) Developers using custom elements should be able to get full-featured IDE support including auto-completion, hover-documentation, unknown symbol warnings, etc....

If you use the fetch API in JS, this will not work and trigger the following error. ```console Uncaught (in promise) TypeError: Failed to execute 'fetch' on 'Window': Request with...

Hidden files are part of the filesystem and should stay included in the directory listing, they are just hidden for the user. Files like .gitignore, .editorconfig, .npmrc,... are also useful...