ADDED: Importers for EasyEDA (JLCEDA) Standard / Professional.

This commit is contained in:
Alex Shvartzkop
2023-09-07 11:02:40 +03:00
parent 024622b0f6
commit 21ee65aa9c
48 changed files with 10019 additions and 3 deletions
+14
View File
@@ -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( "&lt;" ), wxS( "<" ) );
converted.Replace( wxS( "&gt;" ), wxS( ">" ) );
return converted;
}
bool NoPrintableChars( const wxString& aString )
{
wxString tmp = aString;