Honghao

Results 35 comments of Honghao

I believe this worth a test case as well. ``` This is **strong** ``` Notice the leading spaces in the 1st line. In addition, ``` 1. This is **Strong** ```...

Looks like this is related to the soft breaks:

For more information, I found that for md like ``` A B ``` For the 1st pass when generating the blocks. The container block's string content already skips the spaces....

Related issue: https://github.com/commonmark/cmark/issues/204

@kivikakk I think that's because the first line has two leading spaces. If you try to change it to 3 or 1, you will see the start column of following...

@chriseidhof Yeah, the cmark lib returns unexpected columns. More interestingly, I also found this weird results (I made italic highligted): Looks like this is related to soft breaks.

I got the same problem when using auto layout and this ``` extension UIScrollView { func dg_stopScrollingAnimation() {} } ``` Fix the issue, but not sure whether it will cause...

alternatively, use ``` (self as NSString).deletingPathExtension ```

> I've created a simple custom rule for that: > > ``` > init_with_class_name: > name: "Init With Class Name" > regex: "((=|,|\\[|:|return)\\s*\\.init\\()" > message: "There should be init function...

This is probably a better way to fix it, without specifying the team id. ```ruby post_install do |installer| installer.pods_project.targets.each do |target| # Fix bundle targets' 'Signing Certificate' to 'Sign to...