Francisco Cano

Results 16 comments of Francisco Cano

This will definitely be an improvement. Arial does not deserve to make it to any other website and we can prevent it. Is Butterick words: > As I men­tioned in...

This is an inconsistency between how the implementation of the markdown `slugify` function works between this library and whatever library the user is trying to use. For the time being,...

Thanks very much, actually it makes perfect sense to be able to use your own slugify function. I leave my code for further reference: ``` js function slugify(value) { return...

I managed to move the `having()` method to `Select` by making the nested queries be initialized like this: ```php $subquery = new static; ``` instead of like this: ```phph $subquery...

Good to know this is on the roadmap! I took a peak into the [dropdown component from Vue Bootstrap](https://bootstrap-vue.org/docs/components/dropdown). I liked the API they have, because they only use two...

I have set-up Prettier to run on save, even without the `@format` comment. ``` let g:prettier#autoformat = 1 let g:prettier#autoformat_require_pragma = 0 ``` When I save a `.js` file (for...

Update, the issue seems to be fixed now, I've restarted vim and it started working. I'm not sure what was going wrong previously. Sorry!

I'm using vue-scroll-snap in nuxt (`create-nuxt-app` using a `SPA`) and don't seem to have any issue.

Following on this issue: Some configurations from `create-nuxt-app` include `purgeCSS`. The plug-in doesn't detect classes dynamically loaded, and, apparently, it doesn't detect classes loaded using plug-ins either. Either way, if...

I was very careful not to leak any cookie since this was a requirement from the client. Today I found out my site is technically violating the cookie law ([since...