Skip to content

Commit a1babcf

Browse files
authored
Add codeblock language as title remark plugin (#4418)
* chore: update dependencies and add remark-codeblock-language-as-title plugin * feat: add README for languageAsTitleRemarkPlugin with features and usage details * fix: rename plugin to codeblockLanguageAsTitleRemarkPlugin for consistency
1 parent 8578e1b commit a1babcf

File tree

7 files changed

+94
-244
lines changed

7 files changed

+94
-244
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# codeblockLanguageAsTitleRemarkPlugin
2+
3+
A custom [remark](https://github.com/remarkjs/remark) plugin that automatically sets the `title` metadata for code blocks in Markdown files based on the block's language.
4+
5+
## Features
6+
7+
- **Adds `title` Metadata**: For code blocks with a specified language (e.g., `js`, `python`), the plugin sets the `title` metadata to match the language.
8+
- **Preserves Existing Metadata**: If the code block already contains metadata (`meta`) but lacks a `title`, the plugin appends the `title` without removing the existing metadata.
9+
- **Ignores Code Blocks with Existing `title`**: If the `meta` field already includes a `title` property, the plugin does nothing to avoid overwriting it.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "@react-native-website/remark-codeblock-language-as-title",
3+
"version": "0.0.1",
4+
"private": true,
5+
"description": "Remark plugin for using codeblock language as title",
6+
"main": "src/index.js",
7+
"type": "module",
8+
"keywords": [
9+
"remark",
10+
"react-native",
11+
"lint"
12+
],
13+
"files": [
14+
"src/*"
15+
],
16+
"scripts": {
17+
"prettier": "prettier --write '{src}/**/*.{md,js,jsx,ts,tsx}'"
18+
},
19+
"dependencies": {
20+
"unist-util-visit": "^5.0.0"
21+
},
22+
"devDependencies": {
23+
"remark": "^15.0.1"
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/**
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
export default function codeblockLanguageAsTitleRemarkPlugin() {
9+
/**
10+
* @param {import('mdast').Root} root - The root node of the Markdown AST
11+
* @returns {Promise<void>}
12+
*/
13+
return async root => {
14+
const {visit} = await import('unist-util-visit');
15+
visit(root, 'code', node => {
16+
if (node.lang) {
17+
if (node.meta) {
18+
if (node.meta.includes('title=')) {
19+
return;
20+
}
21+
node.meta = `title="${node.lang}" ${node.meta}`;
22+
} else {
23+
node.meta = `title="${node.lang}"`;
24+
}
25+
}
26+
});
27+
};
28+
}

plugins/remark-lint-no-dead-urls/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
},
2020
"dependencies": {
2121
"got": "^13.0.0",
22-
"unified-lint-rule": "^2.1.1",
23-
"unist-util-visit": "^4.1.2"
22+
"unified-lint-rule": "^3.0.0",
23+
"unist-util-visit": "^5.0.0"
2424
},
2525
"devDependencies": {
26-
"dedent": "^0.7.0",
26+
"dedent": "^1.5.3",
2727
"jest": "^29.4.3",
28-
"remark": "^12.0.1"
28+
"remark": "^15.0.1"
2929
}
3030
}

plugins/remark-snackplayer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"test": "yarn tape tests/index.js"
2020
},
2121
"dependencies": {
22-
"dedent": "^0.7.0",
22+
"dedent": "^1.5.3",
2323
"object.fromentries": "^2.0.3",
2424
"unist-util-visit-parents": "^3.1.1"
2525
},
2626
"devDependencies": {
27-
"remark": "^14.0.3",
27+
"remark": "^15.0.1",
2828
"tape": "^5.7.0"
2929
}
3030
}

website/docusaurus.config.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ const commonDocsOptions = {
2121
showLastUpdateTime: true,
2222
editUrl:
2323
'https://github.com/facebook/react-native-website/blob/main/website/',
24-
remarkPlugins: [require('@react-native-website/remark-snackplayer')],
24+
remarkPlugins: [
25+
require('@react-native-website/remark-snackplayer'),
26+
require('@react-native-website/remark-codeblock-language-as-title'),
27+
],
2528
};
2629

2730
const isDeployPreview = process.env.PREVIEW_DEPLOY === 'true';

0 commit comments

Comments
 (0)