You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
common::colorify "yellow""WARNING: --use-standard-markers is deprecated and will be removed in the future."
116
117
common::colorify "yellow"" All needed changes already done by the hook, feel free to remove --use-standard-markers setting from your pre-commit config"
117
118
;;
119
+
--custom-marker-begin)
120
+
insertion_marker_begin=$value
121
+
common::colorify "green""INFO: --custom-marker-begin is used and the marker is set to \"$value\"."
122
+
;;
123
+
--custom-marker-end)
124
+
insertion_marker_end=$value
125
+
common::colorify "green""INFO: --custom-marker-end is used and the marker is set to \"$value\"."
126
+
;;
127
+
--custom-doc-header)
128
+
doc_header=$value
129
+
common::colorify "green""INFO: --custom-doc-header is used and the doc header is set to \"$value\"."
130
+
;;
118
131
esac
119
132
done
120
133
@@ -198,7 +211,7 @@ function terraform_docs {
198
211
199
212
# Use of insertion markers, where there is no existing README file
0 commit comments