19 lines
276 B
Julia
19 lines
276 B
Julia
#=
|
|
html:
|
|
- Julia version: 1.7.2
|
|
- Author: shenjack
|
|
- Date: 2022-04-26
|
|
=#
|
|
|
|
using PyCall
|
|
|
|
include("../../utils/translate.jl")
|
|
|
|
struct default_style
|
|
# font_name::String = fonts.HOS_S()
|
|
font_size::UInt8
|
|
bold::Bool
|
|
italic::Bool
|
|
end
|
|
|
|
a = default_style(1, true, true) |