Files
klz-cables.com/.pnpm-store/v10/files/8b/9025f4d1659657afc9e4d3080157dfff8b4ecfff50571008277f929dc471f5d987e487032b8d7086dffb63fc79462bedb48cfabd56e0242b221bfbfa89f9e7
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

56 lines
1.6 KiB
Plaintext

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
'use strict';
var markdown = require('@lexical/markdown');
var LexicalComposerContext = require('@lexical/react/LexicalComposerContext');
var LexicalHorizontalRuleNode = require('@lexical/react/LexicalHorizontalRuleNode');
var react = require('react');
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
const HR = {
dependencies: [LexicalHorizontalRuleNode.HorizontalRuleNode],
export: node => {
return LexicalHorizontalRuleNode.$isHorizontalRuleNode(node) ? '***' : null;
},
regExp: /^(---|\*\*\*|___)\s?$/,
replace: (parentNode, _1, _2, isImport) => {
const line = LexicalHorizontalRuleNode.$createHorizontalRuleNode();
// TODO: Get rid of isImport flag
if (isImport || parentNode.getNextSibling() != null) {
parentNode.replace(line);
} else {
parentNode.insertBefore(line);
}
line.selectNext();
},
type: 'element'
};
const DEFAULT_TRANSFORMERS = [HR, ...markdown.TRANSFORMERS];
function MarkdownShortcutPlugin({
transformers = DEFAULT_TRANSFORMERS
}) {
const [editor] = LexicalComposerContext.useLexicalComposerContext();
react.useEffect(() => {
return markdown.registerMarkdownShortcuts(editor, transformers);
}, [editor, transformers]);
return null;
}
exports.DEFAULT_TRANSFORMERS = DEFAULT_TRANSFORMERS;
exports.MarkdownShortcutPlugin = MarkdownShortcutPlugin;