sayakpaul HF staff commited on
Commit
d513c3c
1 Parent(s): 67ee44f

fix: trying to escape special character.

Browse files
Files changed (1) hide show
  1. hub_utils/readme.py +1 -1
hub_utils/readme.py CHANGED
@@ -32,7 +32,7 @@ The pipeline contained in this repository was created using [this Space](https:/
32
  model_card += f"Following weight paths (KerasCV) were used \n: {weight_paths}"
33
 
34
  if placeholder_token is not None:
35
- model_card += f"\n\nFollowing `placeholder_token` was added to the tokenizer: {placeholder_token}."
36
 
37
  with open(os.path.join(repo_folder, "README.md"), "w") as f:
38
  f.write(yaml + model_card)
 
32
  model_card += f"Following weight paths (KerasCV) were used \n: {weight_paths}"
33
 
34
  if placeholder_token is not None:
35
+ model_card += f"\n\nFollowing `placeholder_token` was added to the tokenizer: `{placeholder_token}`."
36
 
37
  with open(os.path.join(repo_folder, "README.md"), "w") as f:
38
  f.write(yaml + model_card)