Fix: use a concise way to change link form when generating package.json
This commit is contained in:
parent
ffc6cdd871
commit
097d527cbd
@ -1289,17 +1289,17 @@ mod tests {
|
||||
.to_string();
|
||||
schema.push_str(",\n");
|
||||
|
||||
let mut new_schema = schema.clone();
|
||||
// Transform the asciidoc form link to markdown style.
|
||||
let url_matches = schema.match_indices("https://");
|
||||
let mut cnt = 0;
|
||||
for (idx, _) in url_matches {
|
||||
let mut url_offsets = url_matches.map(|(idx, _)| idx).collect::<Vec<usize>>();
|
||||
url_offsets.reverse();
|
||||
for idx in url_offsets {
|
||||
let link = &schema[idx..];
|
||||
// matching on whitespace to ignore normal links
|
||||
if let Some(link_end) = link.find(|c| c == ' ' || c == '[') {
|
||||
if link.chars().nth(link_end) == Some('[') {
|
||||
new_schema.insert(idx + cnt, '(');
|
||||
new_schema.insert(idx + link_end + cnt + 1, ')');
|
||||
cnt = cnt + 2;
|
||||
schema.insert(idx, '(');
|
||||
schema.insert(idx + link_end + 1, ')');
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1314,9 +1314,9 @@ mod tests {
|
||||
let end = package_json.find(end_marker).unwrap();
|
||||
|
||||
let p = remove_ws(&package_json[start..end]);
|
||||
let s = remove_ws(&new_schema);
|
||||
let s = remove_ws(&schema);
|
||||
if !p.contains(&s) {
|
||||
package_json.replace_range(start..end, &new_schema);
|
||||
package_json.replace_range(start..end, &schema);
|
||||
ensure_file_contents(&package_json_path, &package_json)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user