mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-27 06:57:57 +02:00
37 lines
1,017 B
TypeScript
37 lines
1,017 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import {loader} from 'webpack';
|
|
import {truncate, linkify} from './blogUtils';
|
|
import {parseQuery, getOptions} from 'loader-utils';
|
|
|
|
const markdownLoader: loader.Loader = function (source) {
|
|
const fileString = source as string;
|
|
const callback = this.async();
|
|
const {truncateMarker, siteDir, contentPath, blogPosts} = getOptions(this);
|
|
|
|
// Linkify posts
|
|
let finalContent = linkify(
|
|
fileString as string,
|
|
siteDir,
|
|
contentPath,
|
|
blogPosts,
|
|
);
|
|
|
|
// Truncate content if requested (e.g: file.md?truncated=true).
|
|
const truncated: string | undefined = this.resourceQuery
|
|
? parseQuery(this.resourceQuery).truncated
|
|
: undefined;
|
|
|
|
if (truncated) {
|
|
finalContent = truncate(finalContent, truncateMarker);
|
|
}
|
|
|
|
return callback && callback(null, finalContent);
|
|
};
|
|
|
|
export default markdownLoader;
|