David Wells
David Wells
New cli setup in v3
That demo is pretty old running the now dead google analytics v3. Try with the latest version of Google analytics (totally different product *sigh*)
Actually, https://unpkg.com/@analytics/google-analytics/dist/@analytics/google-analytics.min.js is new GA4. Demo is outdated. Try the below code ```html /* Initialize analytics */ var Analytics = _analytics.init({ app: 'analytics-html-demo', debug: true, plugins: [ // attach google...
Maybe it's the `` tag that is being inserted via https://github.com/decaporg/decap-cms/blob/6266ccc16a8a992695d4bdf13a63746986cedc3e/packages/decap-cms-widget-markdown/src/MarkdownControl/renderers.js#L207-L209 with no `children` as described in https://github.com/ianstormtaylor/slate/issues/3930 Might need to do something like ``` function Break(props) { return {props.children};...
I tested it out by changing `br` to a `div` that gets the children. It seemed to worked (no more editor crash) https://github.com/decaporg/decap-cms/assets/532272/4a1ef7ee-ad7a-4167-8024-a8a06e006f0e I think all the components in https://github.com/decaporg/decap-cms/blob/6266ccc16a8a992695d4bdf13a63746986cedc3e/packages/decap-cms-widget-markdown/src/MarkdownControl/renderers.js...
Looking at https://jsonnet.org/ a lot of things are different 😄 For starters this adds variable support to existing config formats (yml, json, toml etc). Anything you can parse into a...
Async values are quite useful for secrets & remote values that may have changed (service discovery) https://github.com/DavidWells/configorama/tree/master/tests/asyncValues You can define your own async variable like `${ourSecrets:key}` and have that fetch...
Thanks for the questions 😃 Out of curiosity, How’d you find the repo?
Setup a "bot" github account and connect sites via that "bot" account. For example my bot for integrations is https://github.com/davidtron5000 * beep boop beep *
Any thoughts on this PR from @heroku-cli team? We'd very much like to use something like this, even if it means updating/forking some of the plugins (like the help plugin)...