Kyle Kovacs

Results 55 comments of Kyle Kovacs

I was confused about this too. To clarify, | `session_id` | `expires` | `data` | |-|-|-| | `3phuQRt...` | `1656693448` | `{"cookie":{"expires":"2022-07-01T16:37:27.897Z",...},...}` | | | This `expires` time is used...

Update: I noticed that editing and saving `README.md` causes the `docs/file1.md` page to live-reload. So I guess it's just the case that the live reloader is watching the README file...

I have noticed this issue too. In my case the YANG model validates just fine when run through pyang, but gives these leafref errors when running with `-f uml`.

It's been a year; any updates? Also, @Leon0402, you said > or at least not all of them Do you have any info on which features/syntaxes may be correctly processed?

Sorry if this is repeated information; it's a little hard to tell the progress here. I have a use-case where I need my page to use `` elements instead of...

Adding some more detail to my previous comment now that I learned a little more about Remark/Rehype plugins. By dumping out the `mainNode` object from [the rehype-toc plugin](https://github.com/JS-DevTools/rehype-toc/blob/master/src/rehype-toc.ts#L19), I found...

@slorber Thanks for the advice. I was able to come up with a plugin just like how you described. Unfortunately, I still didn't find a way to actually parse through...

I have the same problem. Here is a minimal example using `extractAllTo`: ```typescript // asdf.ts import AdmZip from 'adm-zip'; const z = new AdmZip('myFile.zip'); z.extractAllTo('./temp', true); ``` And here is...

For anyone else with this problem, my current workaround is to just not use this package 😢. I can achieve the desired result using this: ```typescript import childProcess from 'child_process';...

I was finally able to update Power Toys, and I found that this issue still persists. Here's an example showing the bug: ![1bd30d6c0a6e500c421b4a3637376012](https://user-images.githubusercontent.com/8991581/233219717-112b25c2-2ac4-4afa-b261-4825d372d8df.gif) As you can see, everything works as...