最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Where is CodeMirror.js? - Stack Overflow

programmeradmin6浏览0评论

For the first time I'm trying to use CodeMirror for template edition of my CMS. In the first page of there is the following sample:

<link rel="stylesheet" href="lib/codemirror.css">
<script src="lib/codemirror.js"></script>
<script>
  var editor = CodeMirror.fromTextArea(myTextarea, {
    lineNumbers: true
  });
</script>

But on the GitHub page there isn't any codemirror.js file in the lib directory. How should I use this tool?

For the first time I'm trying to use CodeMirror for template edition of my CMS. In the first page of http://codemirror there is the following sample:

<link rel="stylesheet" href="lib/codemirror.css">
<script src="lib/codemirror.js"></script>
<script>
  var editor = CodeMirror.fromTextArea(myTextarea, {
    lineNumbers: true
  });
</script>

But on the GitHub page there isn't any codemirror.js file in the lib directory. How should I use this tool?

Share Improve this question edited Apr 30, 2020 at 18:00 Peter Mortensen 31.6k22 gold badges110 silver badges133 bronze badges asked Feb 24, 2017 at 16:51 Vaheed01Vaheed01 1,0574 gold badges15 silver badges37 bronze badges 4
  • 8 Click download on the CodeMirror website's homepage. It's on the red part of the yin-yang symbol. – Joe Clay Commented Feb 24, 2017 at 16:54
  • Thanks you, It seems I should be waiting for down votes for my post! – Vaheed01 Commented Feb 24, 2017 at 16:58
  • 2 No problem, something about the design of that page makes it really easy to glance past the download link... – Joe Clay Commented Feb 24, 2017 at 17:00
  • 2 this post helped me too. – Cledson Araújo Commented Mar 30, 2017 at 20:08
Add a ment  | 

1 Answer 1

Reset to default 18

One way to get CodeMirror is to download it. You can get the file links from the CDN here: https://cdnjs./libraries/codemirror

You just have to put the CDN link in the script or link tag like this:

<script src="https://cdnjs.cloudflare./ajax/libs/codemirror/5.32.0/codemirror.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare./ajax/libs/codemirror/5.32.0/codemirror.min.css" />
发布评论

评论列表(0)

  1. 暂无评论