2022-09-18
Memecahkan Masalah Spasi Antara Alfabet dan Karakter Jepang saat Memformat Markdown dengan Prettier
Pendahuluan
Saat memformat Markdown dengan Prettier, secara default akan ditambahkan spasi setengah lebar antara alfabet dan karakter Jepang. Misalnya, saat memformat AIエンジニア
(AI engineer), menjadi AI エンジニア
.
Artikel ini memperkenalkan metode untuk mencegah penambahan spasi setengah lebar antara alfabet dan karakter Jepang saat memformat dengan Prettier.
Solusi
Prettier terletak di direktori berikut:
~/.vscode/extensions/esbenp.prettier-vscode-<Your Version>/node_modules/prettier
Buka file index.js
di direktori tersebut dengan editor dan temukan bagian kode berikut.
~/.vscode/extensions/esbenp.prettier-vscode-<Your Version>/node_modules/prettier/index.js
if (lastNode && lastNode.type === "word") {
if (lastNode.kind === KIND_NON_CJK && node.kind === KIND_CJ_LETTER && !lastNode.hasTrailingPunctuation || lastNode.kind === KIND_CJ_LETTER && node.kind === KIND_NON_CJK && !node.hasLeadingPunctuation) {
nodes.push({
type: "whitespace",
value: " "
});
} else if (!isBetween(KIND_NON_CJK, KIND_CJK_PUNCTUATION) && // disallow leading/trailing full-width whitespace
![lastNode.value, node.value].some(function (value) {
return /\u3000/.test(value);
})) {
nodes.push({
type: "whitespace",
value: ""
});
}
}
Lakukan modifikasi berikut:
~/.vscode/extensions/esbenp.prettier-vscode-<Your Version>/node_modules/prettier/index.js
if (lastNode && lastNode.type === "word") {
if (lastNode.kind === KIND_NON_CJK && node.kind === KIND_CJ_LETTER && !lastNode.hasTrailingPunctuation || lastNode.kind === KIND_CJ_LETTER && node.kind === KIND_NON_CJK && !node.hasLeadingPunctuation) {
nodes.push({
type: "whitespace",
- value: " "
+ value: ""
});
} else if (!isBetween(KIND_NON_CJK, KIND_CJK_PUNCTUATION) && // disallow leading/trailing full-width whitespace
![lastNode.value, node.value].some(function (value) {
return /\u3000/.test(value);
})) {
nodes.push({
type: "whitespace",
value: ""
});
}
}
Modifikasi tersebut mengubah value: " "
menjadi value: ""
. Setelah Anda menyimpan perubahan tersebut, Prettier tidak akan lagi menambahkan spasi setengah lebar antara alfabet dan karakter Jepang saat memformat.
AlloyDB
Amazon Cognito
Amazon EC2
Amazon ECS
Amazon QuickSight
Amazon RDS
Amazon Redshift
Amazon S3
API
Autonomous Vehicle
AWS
AWS API Gateway
AWS Chalice
AWS Control Tower
AWS IAM
AWS Lambda
AWS VPC
BERT
BigQuery
Causal Inference
ChatGPT
Chrome Extension
CircleCI
Classification
Cloud Functions
Cloud IAM
Cloud Run
Cloud Storage
Clustering
CSS
Data Engineering
Data Modeling
Database
dbt
Decision Tree
Deep Learning
Descriptive Statistics
Differential Equation
Dimensionality Reduction
Discrete Choice Model
Docker
Economics
FastAPI
Firebase
GIS
git
GitHub
GitHub Actions
Google
Google Cloud
Google Search Console
Hugging Face
Hypothesis Testing
Inferential Statistics
Interval Estimation
JavaScript
Jinja
Kedro
Kubernetes
LightGBM
Linux
LLM
Mac
Machine Learning
Macroeconomics
Marketing
Mathematical Model
Meltano
MLflow
MLOps
MySQL
NextJS
NLP
Nodejs
NoSQL
ONNX
OpenAI
Optimization Problem
Optuna
Pandas
Pinecone
PostGIS
PostgreSQL
Probability Distribution
Product
Project
Psychology
Python
PyTorch
QGIS
R
ReactJS
Regression
Rideshare
SEO
Singer
sklearn
Slack
Snowflake
Software Development
SQL
Statistical Model
Statistics
Streamlit
Tabular
Tailwind CSS
TensorFlow
Terraform
Transportation
TypeScript
Urban Planning
Vector Database
Vertex AI
VSCode
XGBoost