2024-03-08
温故知新
00

简介

现在 Markdown 编辑文本越来越主流,很多系统希望集成 Markdown 编辑器,编辑Markdown后,自然少不了渲染的事,但是渲染往往各自平台不同。如果你不知道选择哪家的渲染效果,又没有过多的特效要求,可以使用 GithubAPI 快速实现 Markdown 渲染。

本文就教会你如何使用 GithubAPI 渲染 Markdown。

2024-03-05
藏龙卧虎
00

简介

本文用于记录Java语言常用的一些排序方法,主要为Java原生方法。

2024-03-05
老年痴呆
00

简介

从老狗宣布直播到现在,已经过去42天了,进展如何?嗯……好像没什么进展。

2024-03-03
温故知新
00

简介

一些老项目因为不为人知的原因,出现报错:

console
Error: You must provide the URL of lib/mappings.wasm by calling SourceMapConsumer.initialize({ 'lib/mappings.wasm': ... }) before using SourceMapConsumer

找到一个临时解决方案:运行项目时设置环境变量NODE_OPTIONS=--openssl-legacy-provider

Windows环境为例,修改运行脚本:

bash
# 原来 # react-scripts start # 修改后 set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start

PS:上面的修改在 package.json 中进行即可。如:

  • 原来报错的 package.json
json
{ "scripts": { "dev": "react-scripts start" } }
  • 修改后的 package.json
json
{ "scripts": { "dev": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start" } }

参考:https://github.com/parcel-bundler/parcel/issues/8005#issuecomment-1120149358

2024-03-02
温故知新
00

简介

本文用于记录使用FFmpeg的记录,可当作笔记查阅。