如题 solo 的 Markdown 编辑发表出去后,代码块内如何能显示行号呢?
func (this *CustomerService) Delete(index int) bool {
index = this.FindById(index)
if index == -1 {
return false
}
this.customers = append(this.customers[:index], this.customers[index+1:]...)
return true
}
请各位大大指教 🙏