mirror of
https://github.com/mii443/AzooKeyKanaKanjiConverter.git
synced 2025-12-03 11:08:33 +00:00
* base value should be updated here * feature: implement cli tool for reading louds data * Update document
15 lines
294 B
Swift
15 lines
294 B
Swift
//
|
|
// DefaultStringInterpolation+CommandLineUtils.swift
|
|
//
|
|
//
|
|
// Created by miwa on 2024/04/29.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension DefaultStringInterpolation {
|
|
mutating func appendInterpolation(bold value: String){
|
|
self.appendInterpolation("\u{1B}[1m" + value + "\u{1B}[m")
|
|
}
|
|
}
|