Emanuil Rusev

Results 125 comments of Emanuil Rusev

Could u elaborate, pls

Didn't the current instruction work?

Does Codeigniter have special requirements about integration of classes?

Makes sense, I'll see what I can do.

Could you elaborate, please.

The SQL statements that Base generates are quite simple. I wonder if, apart from the INSERT discussed in #3, there are other statements that might be incompatible with the other...

Thanks! Then, perhaps, we should see which engines are compatible (or could become compatible after minor changes) with the current implementation and list them in the readme. SQLite might be...

@aidantwoods Looks good! Thanks for the thorough explanation!

Can't we fix this with a [lookaround](https://www.regular-expressions.info/lookaround.html)? Here's how it'd look for `$EmRegex['_']`: ```diff - /^_((?:\\\\_|[^_]|__[^_]*__)+?)_(?!_)\b/us + /^_(?!\s)((?:\\\\_|[^_]|__[^_]*__)+?)(?