streetwriters / notesnook-importer

Import your notes from any app into Notesnook
https://importer.notesnook.com/
GNU General Public License v3.0
48 stars 9 forks source link

Leading and trailing spaces in evernote code blocks are removed #94

Closed martinfrancois closed 9 months ago

martinfrancois commented 9 months ago

When importing a note from Evernote that includes a code block, if there are leading and trailing spaces, they are all removed.

Expected

describe('ContactFormComponent', () => {
  let component: ContactFormComponent;
  let fixture: ComponentFixture<ContactFormComponent>;
    component.contactForm.setValue({
      "name": "", 
});

Actual

describe('ContactFormComponent', () => {
let component: ContactFormComponent;
let fixture: ComponentFixture<ContactFormComponent>;
component.contactForm.setValue({
"name": "",
});