This PR fixes the Devto importing. Noticed when trying librarian that importing from Devto didn't work correctly, it was trying to save the imported markdown as the path. This is due to the change in f9da74b635a13f199572e2133793b2d758ddee84 were Content is now extending from Parsed. Parsed expects the content when instantiating a new object, not the path.
DevtoServiceProvider uses the older syntax, this PR changes that and fixes the issue by switching places between the content and path.
This PR fixes the Devto importing. Noticed when trying
librarian
that importing from Devto didn't work correctly, it was trying to save the imported markdown as the path. This is due to the change in f9da74b635a13f199572e2133793b2d758ddee84 wereContent
is now extending fromParsed
.Parsed
expects the content when instantiating a new object, not the path.DevtoServiceProvider
uses the older syntax, this PR changes that and fixes the issue by switching places between the content and path.