tag, so html and body tags should be part of the template.
* In case the Markdown body starts with a header (#), that value will also be used as `title` parameter.
*/
-export class MarkdownToHtmlConverter extends TypedRepresentationConverter {
+export class MarkdownToHtmlConverter extends BaseTypedRepresentationConverter {
private readonly templateEngine: TemplateEngine;
public constructor(templateEngine: TemplateEngine) {
diff --git a/src/storage/conversion/QuadToRdfConverter.ts b/src/storage/conversion/QuadToRdfConverter.ts
index 512832b44..6432c6555 100644
--- a/src/storage/conversion/QuadToRdfConverter.ts
+++ b/src/storage/conversion/QuadToRdfConverter.ts
@@ -7,14 +7,14 @@ import type { ValuePreferences } from '../../http/representation/RepresentationP
import { INTERNAL_QUADS } from '../../util/ContentTypes';
import { pipeSafely } from '../../util/StreamUtil';
import { PREFERRED_PREFIX_TERM } from '../../util/Vocabularies';
+import { BaseTypedRepresentationConverter } from './BaseTypedRepresentationConverter';
import { getConversionTarget } from './ConversionUtil';
import type { RepresentationConverterArgs } from './RepresentationConverter';
-import { TypedRepresentationConverter } from './TypedRepresentationConverter';
/**
* Converts `internal/quads` to most major RDF serializations.
*/
-export class QuadToRdfConverter extends TypedRepresentationConverter {
+export class QuadToRdfConverter extends BaseTypedRepresentationConverter {
private readonly outputPreferences?: ValuePreferences;
public constructor(options: { outputPreferences?: Record