public void serialize(Model model, Resource[] mainResources,
String baseURL, Locale[] acceptedLocales,
UnavailableLocalisationHandler handler, String encoding,
boolean forceShow, OutputStream out) throws SerializeException, IOException,
LanguageUnavailableException {
RDFWriter w = model.getWriter("N3");
w.setProperty("usePropertySymbols", "false");
w.setProperty("useTripleQuotedStrings", "false");
w.setProperty("useDoubles", "false");
w.write(model, out, baseURL);
}