This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE OR REPLACE FUNCTION orig_htmlspecialchars(TEXT) RETURNS TEXT AS $$ | |
SELECT | |
regexp_replace( | |
regexp_replace( | |
regexp_replace( | |
regexp_replace( | |
regexp_replace($1, | |
E'&(?!(?:#\\d+?|\\w+?);)', '&', 'g'), | |
E'"', '"', 'g'), | |
E'''', ''', 'g'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
# User-specific files | |
*.suo | |
*.user | |
*.userosscache | |
*.sln.docstates | |
# User-specific files (MonoDevelop/Xamarin Studio) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Global Settings | |
* text=auto | |
# Language | |
*.php text eol=lf | |
*.cs text eol=lf | |
*.tt text eol=lf | |
*.js text eol=lf | |
*.ts text eol=lf | |
*.tsx text eol=lf |