Lukas Geiter

Results 59 comments of Lukas Geiter

@alexander-matthiesen Sorry, I don't have the time to look into this.

I've had this issue as well. In my case it was due to a link with anchor but no file extension: ```markdown [click me](../foo#bar) ``` instead of ```markdown [click me](../foo.md#bar)...

I'm not sure what exactly you're looking for. I recommend you read the [wiki](https://github.com/lukasgeiter/gettext-extractor/wiki). If you have a question or problem, provide more details and I'll try my best to...

First of all, I'm not sure that my package is what you need. `gettext-extractor` is for the [gettext](https://en.wikipedia.org/wiki/Gettext) system of managing translations. The extractor generates a `.pot` template file which...

1. Install the package in your repo ([instructions here](https://github.com/lukasgeiter/gettext-extractor/wiki/Installation)) 2. Create a new `.js` file with the contents from [this example](https://github.com/lukasgeiter/gettext-extractor/wiki/Introduction) 3. Execute your file using `node` At this point...

Again, [read this wiki page](https://github.com/lukasgeiter/gettext-extractor/wiki/JavaScript%2C-TypeScript%2C-JSX) and try figuring things out on your own. I'm not going to do your work for you.

Hi, that's an interesting idea. While it is technically possible, I'm not sure it's in the scope of this project. I'll keep this issue open for the time being though....

Variable substitutions in template strings are not supported. [From the wiki](https://github.com/lukasgeiter/gettext-extractor/wiki/JavaScript%2C-TypeScript%2C-JSX#extracting): > **Note**: Template literals are supported, but only without placeholders. Since the string containing placeholders isn't available during runtime...

The fact that `'Import'` is extracted is actually kind of surprising to me because you're effectively running HTML through the TypeScript parser. My guess is that the parser treats the...