Trần Trung Tín
Trần Trung Tín
### Description According to the architect, the order of running functions from the spider middleware should be: `process_spider_input` -> Spider's `parse` -> `process_spider_output` but if `parse` is a generator function,...
for example if the api route file is at '/pages/api/deep/nested/route/[[...params]].ts' then I expect the `@Get()` URL pattern should match from `/deep/nested/route/` but instead it only match from `/deep/` ``` class...
This code from `src/universal/modules/auth/ducks/auth.js`: ``` export function oauthLogin(providerEndpoint, redirect) { ... const res = await fetch(hostUrl() + providerEndpoint, { method: 'get', mode: 'no-cors', credentials: 'include' }); ... } ``` if...
**Describe the bug** I did set `app.config.INJECTION_SIGNAL = "http.handler.before"`, but when the server start, there is a split second where the handler runs before the injection finish, and it will...
For pages with footnotes annotation (http://www.paulgraham.com/before.html,...), it would be great if the output is using markdown footnotes syntax: From rendered HTML: ``` [num] --- [num] footnote text ``` To Markdown:...