skeets23

Results 8 issues of skeets23

For example, try the readme file here: https://github.com/CodepadME/laravel-tricks In GitHub, it works as expected, because: `## Title` is translated to: ``` {svg removed for brevity}Title ``` While this library translates...

feature request

``` - a - b - c ``` renders as: ``` a b c ``` ... which is great. However: ``` - a - b - c - 1 -...

So I recently updated this package in my project, and I traced back a bug to this change in the source code that I can't understand for the life of...

The parent div for these images is being inverted. Inverting the images themselves again will un-invert them. Just added these CSS rules: ``` .gb_nc span{ filter: invert(1); } .gb_nc .gbip{...

``` $extract = new Extract(); $result = $extract->parse("test@[email protected]")->isValidDomain(); ``` This results in `true`, when it should be `false` ("@" is not allowed in domain names)

If you manually fill out the captcha and submit the form, as long as you don't load a new captcha, you can then use the same captcha code to post...

In `Authenticator.php`: ``` protected function canPassWithoutCheckingOTP() { return !$this->isEnabled() || $this->noUserIsAuthenticated() || !$this->isActivated() || $this->twoFactorAuthStillValid(); } ``` So, if no user is authenticated, they can "pass without checking OTP". This...

### Bug description On my "dashboard.blade.php", I have this tag component: ``` ``` And I have a `welcome.blade.php` file in my `components` directory. When I do a `ctrl+click` on the...