Marco Pfeiffer
Marco Pfeiffer
I'm not sure if im just overlooking something but I tried to use this bundle with symfony 4.1. I added the bundle like in the new `bundles.php` like this: ```php...
When I try to book something, using this SDK, that has the `&` character in the name, like a company "example GmbH & Co. KG", then I get the following...
This is not really a nice fix. It's just a search and replace for all createElement calls that adds htmlspecialchars everywhere These were the patterns executed: `createElement\(([^,()]+\,\s*)(\$([^,;()]+|\([^;()]*\))+)\)` `createElement($1($2) !== null...
The `post.content` variable contains the raw markdown and not the processed html when i generate my site using `jekyll build --incremental`. This means that the rss feed is broken where...
I have multiple hosting situations where I can't create request on the website domain or localhost directly. One is my local docker development environment and the other is a live...
Ok, this is more an idea so i want to discuss it. Currently it is possible to load only less files that one needs in a project, which is awesome....
I kind of started this library by [positing my code which copies cache files](https://github.com/brefphp/bref/pull/597#issuecomment-605641799). But https://github.com/brefphp/symfony-bridge/pull/17#discussion_r407191775 made me check again and realise that symfony (4.4) works without modifications if the...
I wrote this little test script: ```ts import {ensureDir} from "https://deno.land/[email protected]/fs/ensure_dir.ts"; // importing fs/mod.ts requires --unstable const FOLDER = 'test'; await ensureDir(FOLDER); queueMicrotask(async () => { let count = 0;...