(spec markdownDiffSpec)
| 123 | } |
| 124 | |
| 125 | func markdownDiffMode(spec markdownDiffSpec) string { |
| 126 | if spec.FilePath != "" { |
| 127 | return markdownDiffModeRemoteVsLocal |
| 128 | } |
| 129 | return markdownDiffModeRemoteVsRemote |
| 130 | } |
| 131 | |
| 132 | func markdownDiffDryRun(spec markdownDiffSpec) *common.DryRunAPI { |
| 133 | dry := common.NewDryRunAPI().Desc("Download the requested Markdown content, compute a unified diff locally, and print the result without modifying the remote file") |
no outgoing calls
no test coverage detected