Benjamin Preiss
Benjamin Preiss
@Fil Yeah, true... Thinking about this, it would be useful to extend [iterator.js](https://github.com/d3/d3-hierarchy/blob/master/src/hierarchy/iterator.js) as well as create another function called _eachToDepth_: First, the changes to iterator.js: ```js export default function*(depth...
Or maybe we don't even need eachToDepth.js... In that case nodesAtDepth.js would be: ```js export default function(depth) { const nodes = [] for (const node of this[Symbol.iterator](depth)) { if (node.depth...
Hello fellow devs! I have been working on something similar the last days. Allow me to introduce my approach here for discussion: The idea is to parse the MDX file...
Okey, perfect - here is the new [discussion](https://github.com/mdx-js/mdx/discussions/2134). For my purpose, sadly the `` tags are not sufficient, because I want to populate a global "content" object with different keys...
I would like to nominate the video tag **poster** attribute for this list of attributes! I stumbled upon it today when trying to use videojs... Wouldn't it be possible to...
Ah sorry for the mistake. :/
Same here There is a workaround though to get it running relatively easy in the meanwhile. Create a local copy of the [Dockerfile](https://github.com/strapi/strapi-docker/blob/master/strapi/Dockerfile) and [entrypoint script](https://github.com/strapi/strapi-docker/blob/master/strapi/docker-entrypoint.sh). Then adjust [this line](https://github.com/strapi/strapi-docker/blob/263a0e4085c4a0615cdfba2b7728ca1e30c25753/strapi/Dockerfile#L5)...
Could it possibly run on WSL?
Same problem for me. **webpack.config.js**: ```js { test: /index\.html$/, use: [ { loader: 'file-loader', options: { // specifies output path relative to output.path outputPath: './', name: '[name].[ext]', }, }, "extract-loader",...
Is anyone already working on translating the schemes? Are there any branches?