Markdown语法与外挂标签写法汇总
1.Markdown语法自带格式参考:Markdown语法图文全面详解(10分钟学会)
注意:此页面偶尔会存在CSS冲突问题!
1.1 代码块示例源码渲染演示12345678910111213\```shell# VSCode终端hexo clean; hexo shexo clean; hexo g; hexo dgit add .; git commit -m "npm publish"; npm version patch; git push# Cmder终端hexo clean && hexo shexo clean && hexo g && hexo dgit add . && git commit -m "npm publish" && npm version patchgit push\```1234567891011# VSCode终端hexo clean; hexo shexo clean; hexo g; hexo dgit add .; gi ...
spring代码片段
1. jackson配置类 jackson配置类
123456789101112131415161718192021222324252627282930313233343536373839import cn.hutool.core.date.DatePattern;import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer;import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;import lombok.extern.slf4j.Slf4j;import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;import o ...
C#学习
起因之前学习java是无奈之举,现在既然已经考了研,在上岸以后我想追寻我最初的梦想:做游戏。而国内基本就是虚幻引擎和Unity二分天下。虚幻引擎因为用到了C++,我并不是很熟悉,所以就先从Unity开始吧。学习Unity肯定要先学习C#的语法,于是就有了这篇博文。(参考资料是微软官网的文档C#文档,缓慢学习中)
语法