ADDED: Importers for EasyEDA (JLCEDA) Standard / Professional.
This commit is contained in:
@@ -534,6 +534,20 @@ wxString EscapeHTML( const wxString& aString )
|
||||
}
|
||||
|
||||
|
||||
wxString UnescapeHTML( const wxString& aString )
|
||||
{
|
||||
wxString converted = aString;
|
||||
|
||||
converted.Replace( wxS( """ ), wxS( "\"" ) );
|
||||
converted.Replace( wxS( "'" ), wxS( "'" ) );
|
||||
converted.Replace( wxS( "&" ), wxS( "&" ) );
|
||||
converted.Replace( wxS( "<" ), wxS( "<" ) );
|
||||
converted.Replace( wxS( ">" ), wxS( ">" ) );
|
||||
|
||||
return converted;
|
||||
}
|
||||
|
||||
|
||||
bool NoPrintableChars( const wxString& aString )
|
||||
{
|
||||
wxString tmp = aString;
|
||||
|
||||
Reference in New Issue
Block a user