Giter VIP home page Giter VIP logo

Comments (3)

obgnail avatar obgnail commented on July 28, 2024 1

我决定把这个作为 feature,此 issue 关闭。如果你有更好的方法麻烦在下面留言。

from typora_plugin.

xiaogithubooo avatar xiaogithubooo commented on July 28, 2024

想了想又觉得合理...

from typora_plugin.

obgnail avatar obgnail commented on July 28, 2024
  1. 本插件是通过后缀名来判断是否是资源的,看以下配置选项,collect_file_without_suffix 默认为 true,所以默认会把无后缀文件也作为资源。
  2. 同时 NodeJS 的 path.extname 会判定 .gitignore 没有 extname。
  3. 所以 .gitignore 就会被包含进来。
  4. 最佳的方案肯定是判断 file magic number,一方面我不想自己写,一方面我又不想为了此功能引入其他包,于是放着没管。事实是连 Windows 都懒得管这件事,也是直接使用后缀判定的,操作系统都如此,我就跟着摆烂了。
[resourceOperation]
# 什么后缀判定为资源
resource_suffix = [".jpg", ".jpeg", ".png", ".gif", ".svg", ".webp", ".webm", ".bmp", ".mp3", ".mp4", ".ogg", ".image", ".jfif", ".gif!large"]
# 对于无后缀名的文件是否加入资源列表
collect_file_without_suffix = true
a = "D:\\golang\\src\\github.com\\obgnail\\typora_plugin\\.gitignore"
const b = require("path").extname(a)
console.log(b) // 输出空串。node 判定 .gitignore 这类 dot file 没有 extname

from typora_plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.