JavaScript - 字符串替换

这个博客介绍了一个HTML页面,该页面包含一个Markdown编辑器和预览器。当用户在编辑器中输入内容时,预览器会实时更新显示。代码主要关注Markdown的特定格式处理,如添加代码块的语言标识(如`python`),以及处理`>>>`符号。滚动同步功能确保编辑器和预览器之间的滚动条位置保持一致,提供流畅的编辑体验。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font: "courier new";
            }
            body {
                width: 100%;
                height: 100vh;
            }
            .container {
                background-color: gray;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: row;
                padding: 1px;
            }
            textarea {
                --margin: 1px;
                width: 100%;
                height: calc(100% - (var(--margin) * 2));
                outline: none;
                resize: none;
                background-color: antiquewhite;
                margin: var(--margin);
                padding: 5px;
                border: none;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <textarea id="editor" autofocus></textarea>
            <textarea id="previewer"></textarea>
        </div>

        <script type="text/javascript">
            window.onload = (event) => {
                // console.log(event)
                main()
            }
            
            function main() {
                const editor = document.getElementById("editor")
                const previewer = document.getElementById("previewer")
                
                editor.oninput = (event) => {
                    console.log(event)
                    
                    const originalContent = event.target.value
                    
                    const lines = originalContent.split("\n")
                    console.log(`Total lines: ${lines.length}`)
                    console.log(lines)
                    
                    // 格式处理
                    for(let i = 0, counter = 1, empty = false; i < lines.length; i++) {
                        if(lines[i] === "```") { // 在第奇数个 "```" 后面添加字符串 "python"
                            if((counter % 2) === 1) {
                                lines[i] += "python"
                            }
                            counter++ // 该变量用于标记奇偶
                        } else if(lines[i] === "\\>>>") { // 使用空字符串替换 "\\>>>"
                            lines[i] = ""
                        }
                        
                        if(empty && lines[i] === "") { // 前面一行是空字符串,这一行也是
                            lines.splice(i, 1) // 删除这一行空字符串
                            i--
                        } else if(empty && lines[i] !== "") { // 前面一行是空字符串,但这一行不是,属于正常格式
                            empty = false
                        } else if(lines[i] === "") { // 标记空字符串“第一次”出现
                            empty = true
                        }
                    }
                    
                    previewer.value = lines.join("\n")
                }
                
                editor.onscroll = (event) => {
                    // console.log(event)
                    const target = event.target
                    // console.log(target.scrollHeight, target.scrollTop)
                    previewer.scrollTop = target.scrollTop
                }
                
                previewer.onscroll = (event) => {
                    // console.log(event)
                    const target = event.target
                    // console.log(target.scrollHeight, target.scrollTop)
                    editor.scrollTop = target.scrollTop
                }
            }
        </script>
    </body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值