make ACTIONS formatting markdown compatible

This commit is contained in:
Tristan Rowley
2019-12-24 14:18:17 +00:00
parent 24b7bbd848
commit 1c5ee2f6b0
2 changed files with 7 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
====== Auto-generated Actions list ======\n # Auto-generated Actions list
Tue 24 Dec 14:06:25 UTC 2019
Tue 24 Dec 14:17:51 UTC 2019
for branch=feature_list_actions for branch=feature_list_actions
# Methods
===== Methods =====
* change_composite_setting(setting_value) * change_composite_setting(setting_value)
* change_hdmi_settings(setting_value) * change_hdmi_settings(setting_value)
* change_output_mode(setting_value) * change_output_mode(setting_value)

View File

@@ -1,12 +1,12 @@
#!/bin/sh #!/bin/sh
echo "====== Auto-generated Actions list ======\n" echo "# Auto-generated Actions list"
echo
echo `date` echo `date`
echo echo
echo "for branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')" echo "for branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')"
echo echo
echo
echo "===== Methods =====" echo "# Methods"
grep " def " actions.py | grep -v "^#" | sed -e 's/ def //' | sed -e 's/self//' | sed -e 's/(, /(/' | sed -e 's/()//' | sed -e 's/\(.*\)/ *\1/' | sed -e 's/://' | sort -n \ grep " def " actions.py | grep -v "^#" | sed -e 's/ def //' | sed -e 's/self//' | sed -e 's/(, /(/' | sed -e 's/()//' | sed -e 's/\(.*\)/ *\1/' | sed -e 's/://' | sort -n \
| grep -v "check_if_should_start_openframeworks\|create_serial_port_process\|__init__\|persist_composite_setting\|receive_detour_info\|_refresh_frame_buffer\|refresh_frame_buffer_and_restart_openframeworks\|run_script\|setup_osc_server\|start_confirm_action\|stop_serial_port_process\|stop_openframeworks_process\|update_capture_settings\|update_config_settings\|update_video_settings" | grep -v "check_if_should_start_openframeworks\|create_serial_port_process\|__init__\|persist_composite_setting\|receive_detour_info\|_refresh_frame_buffer\|refresh_frame_buffer_and_restart_openframeworks\|run_script\|setup_osc_server\|start_confirm_action\|stop_serial_port_process\|stop_openframeworks_process\|update_capture_settings\|update_config_settings\|update_video_settings"