यह काम किस प्रकार करता है?
यह चंक द्वारा एक स्ट्रिंग चंक को पढ़कर काम करता है, जो वास्तव में लंबे तार के लिए सबसे अच्छा समाधान नहीं हो सकता है।
जब भी पार्सर पता लगाता है कि एक महत्वपूर्ण हिस्सा पढ़ा जा रहा है, '*'
या किसी अन्य मार्कडाउन टैग को पढ़ा जा रहा है , तो वह इस तत्व के अंशों को पार्स करना शुरू कर देता है जब तक कि पार्सर को उसका समापन टैग नहीं मिल जाता।
यह मल्टी-लाइन स्ट्रिंग्स पर काम करता है, उदाहरण के लिए कोड देखें।
चेतावनियां
आपने निर्दिष्ट नहीं किया है, या मैं आपकी आवश्यकताओं को गलत समझ सकता हूं, यदि उन टैगों को पार्स करने की आवश्यकता है जो बोल्ड और इटैलिक दोनों हैं , तो मेरा वर्तमान समाधान इस मामले में काम नहीं कर सकता है।
यदि आपको उपरोक्त शर्तों के साथ काम करने की आवश्यकता है, तो यहां टिप्पणी करें और मैं कोड को ट्विक कर दूंगा।
पहला अपडेट: यह बताता है कि मार्कडाउन टैग कैसे व्यवहार किए जाते हैं
टैग अब हार्डकोड नहीं हैं, इसके बजाय वे एक मानचित्र हैं जहां आप आसानी से अपनी आवश्यकताओं को पूरा कर सकते हैं।
टिप्पणियों में आपके द्वारा बताए गए बगों को निश्चित करें, इस मुद्दे को इंगित करने के लिए धन्यवाद = पी
दूसरा अपडेट: मल्टी-लेंथ मार्कडाउन टैग
इसे प्राप्त करने का सबसे आसान तरीका: बहु-लंबाई वाले वर्णों को शायद ही कभी यूनिकोड के साथ बदलना
हालाँकि विधि parseMarkdown
अभी तक बहु-लंबाई टैग का समर्थन नहीं करती है, हम आसानी से उन बहु-लंबाई टैग को string.replace
हमारे rawMarkdown
प्रस्ताव को भेजते समय बदल सकते हैं ।
व्यवहार में इसका एक उदाहरण देखने के लिए ReactDOM.render
, कोड के अंत में स्थित को देखें।
यहां तक कि अगर आपका आवेदन कई भाषाओं का समर्थन करता है , तो अमान्य यूनिकोड वर्ण हैं जो जावास्क्रिप्ट अभी भी पता लगाता है, पूर्व: "\uFFFF"
एक वैध यूनिकोड नहीं है, अगर मैं सही ढंग से याद करता हूं, लेकिन जेएस अभी भी इसकी तुलना करने में सक्षम होगा ( "\uFFFF" === "\uFFFF" = true
)
यह पहली बार में हैक-वाई प्रतीत हो सकता है, लेकिन आपके उपयोग-मामले के आधार पर, मैं इस मार्ग का उपयोग करके किसी भी प्रमुख मुद्दों को नहीं देखता हूं।
इसे प्राप्त करने का दूसरा तरीका
ठीक है, हम आसानी से अंतिम ट्रैक कर सकते हैं N
(जहां N
सबसे लंबी बहु-लंबाई टैग की लंबाई से मेल खाती है) विखंडू।
विधि के अंदर लूप जिस तरह से parseMarkdown
व्यवहार करता है, उसे करने के लिए कुछ ट्विक्स होंगे
, अर्थात यदि वर्तमान चंक एक बहु-लंबाई टैग का हिस्सा है, अगर यह इसे टैग के रूप में उपयोग करता है; अन्यथा, जैसे मामलों में ``k
, हमें इसे notMultiLength
या कुछ समान के रूप में चिह्नित करना होगा और उस चंक को सामग्री के रूप में धकेलना होगा।
कोड
// Instead of creating hardcoded variables, we can make the code more extendable
// by storing all the possible tags we'll work with in a Map. Thus, creating
// more tags will not require additional logic in our code.
const tags = new Map(Object.entries({
"*": "strong", // bold
"!": "button", // action
"_": "em", // emphasis
"\uFFFF": "pre", // Just use a very unlikely to happen unicode character,
// We'll replace our multi-length symbols with that one.
}));
// Might be useful if we need to discover the symbol of a tag
const tagSymbols = new Map();
tags.forEach((v, k) => { tagSymbols.set(v, k ); })
const rawMarkdown = `
This must be *bold*,
This also must be *bo_ld*,
this _entire block must be
emphasized even if it's comprised of multiple lines_,
This is an !action! it should be a button,
\`\`\`
beep, boop, this is code
\`\`\`
This is an asterisk\\*
`;
class App extends React.Component {
parseMarkdown(source) {
let currentTag = "";
let currentContent = "";
const parsedMarkdown = [];
// We create this variable to track possible escape characters, eg. "\"
let before = "";
const pushContent = (
content,
tagValue,
props,
) => {
let children = undefined;
// There's the need to parse for empty lines
if (content.indexOf("\n\n") >= 0) {
let before = "";
const contentJSX = [];
let chunk = "";
for (let i = 0; i < content.length; i++) {
if (i !== 0) before = content[i - 1];
chunk += content[i];
if (before === "\n" && content[i] === "\n") {
contentJSX.push(chunk);
contentJSX.push(<br />);
chunk = "";
}
if (chunk !== "" && i === content.length - 1) {
contentJSX.push(chunk);
}
}
children = contentJSX;
} else {
children = [content];
}
parsedMarkdown.push(React.createElement(tagValue, props, children))
};
for (let i = 0; i < source.length; i++) {
const chunk = source[i];
if (i !== 0) {
before = source[i - 1];
}
// Does our current chunk needs to be treated as a escaped char?
const escaped = before === "\\";
// Detect if we need to start/finish parsing our tags
// We are not parsing anything, however, that could change at current
// chunk
if (currentTag === "" && escaped === false) {
// If our tags array has the chunk, this means a markdown tag has
// just been found. We'll change our current state to reflect this.
if (tags.has(chunk)) {
currentTag = tags.get(chunk);
// We have simple content to push
if (currentContent !== "") {
pushContent(currentContent, "span");
}
currentContent = "";
}
} else if (currentTag !== "" && escaped === false) {
// We'll look if we can finish parsing our tag
if (tags.has(chunk)) {
const symbolValue = tags.get(chunk);
// Just because the current chunk is a symbol it doesn't mean we
// can already finish our currentTag.
//
// We'll need to see if the symbol's value corresponds to the
// value of our currentTag. In case it does, we'll finish parsing it.
if (symbolValue === currentTag) {
pushContent(
currentContent,
currentTag,
undefined, // you could pass props here
);
currentTag = "";
currentContent = "";
}
}
}
// Increment our currentContent
//
// Ideally, we don't want our rendered markdown to contain any '\'
// or undesired '*' or '_' or '!'.
//
// Users can still escape '*', '_', '!' by prefixing them with '\'
if (tags.has(chunk) === false || escaped) {
if (chunk !== "\\" || escaped) {
currentContent += chunk;
}
}
// In case an erroneous, i.e. unfinished tag, is present and the we've
// reached the end of our source (rawMarkdown), we want to make sure
// all our currentContent is pushed as a simple string
if (currentContent !== "" && i === source.length - 1) {
pushContent(
currentContent,
"span",
undefined,
);
}
}
return parsedMarkdown;
}
render() {
return (
<div className="App">
<div>{this.parseMarkdown(this.props.rawMarkdown)}</div>
</div>
);
}
}
ReactDOM.render(<App rawMarkdown={rawMarkdown.replace(/```/g, "\uFFFF")} />, document.getElementById('app'));
कोड का लिंक (टाइपस्क्रिप्ट) https://codepen.io/ludanin/pen/GRgNWPv
कोड के लिए लिंक (वेनिला / बेबल) https://codepen.io/ludanin/pen/eYmBvXw
font _italic *and bold* then only italic_ and normal
? अपेक्षित परिणाम क्या होगा? या यह कभी भी नेस्टेड नहीं होगा?