Andreas Baumgartner

Results 10 comments of Andreas Baumgartner

As workaround you could a) hide the image field via CSS (display: none) and b) ignore changes to this field in during save().

I documented the configuration parameters: https://github.com/lokalise/i18n-ally/wiki/Machine-Translation

Sounds reasonable to me. I‘ll update the PR accordingly.

Oops, closed this PR by accident while syncing my fork with upstream and switching branches. Will reopen.

As suggested, I moved everything to a separate file. A map of the expanded links is saved as `*.ini` file, although I'm not sure if `ConfigParser` is the best approach...

TODOs: - fix: the mapping file is regenerated on each run, as I struggled to find existing records with `ConfigParser` - use mapping file in `parser.py` for generating the markdown

@timhutton IMO it's easier to parse structured `tweet*.js` JSON than to extract links from Markdown files, let alone parsing HTML. As @jwildeboer pointed out, mapping files make life easier. But...

As a workaround for the issue discussed in this PR, you can use a TypeScript declaration file. To use this workaround in your project, add this `expressAsyncHandler.d.ts` file to your...

As a workaround, you can implement a `@keydown="onKeyDown"` handler. ``` typescript function onKeyDown(event: Event, instance: InstanceType) { if ((event as KeyboardEvent).key === "Tab" && instance.pointer !== null) { instance.select(instance.pointer); }...

I run into the same issue with the Django v3.1.4 development server (`python manage.py runserver`).