No longer has horizontal rules between gallery items

This commit is contained in:
Chris Palmer 2019-06-11 12:50:52 +01:00
parent 85e1985f1a
commit 419cadb7ec
2 changed files with 3 additions and 10 deletions

View File

@ -5,21 +5,18 @@ Arduino thermostat to control a beer fridge to use it as an environmental chambe
![](ArduinoThermostat.png) ![](ArduinoThermostat.png)
---
## HydraBot ## HydraBot
Current state of HydraRaptor after being modified for laser engraving. Current state of HydraRaptor after being modified for laser engraving.
![](HydraBot.png) ![](HydraBot.png)
---
## IOT 50V PSU ## IOT 50V PSU
WiFi controllable PSU WiFi controllable PSU
![](IOT_50V_PSU.png) ![](IOT_50V_PSU.png)
---
## Lab ATX PSU ## Lab ATX PSU
Bench power supply built around an ATX PSU. Bench power supply built around an ATX PSU.
@ -33,21 +30,19 @@ Bench power supply built around an ATX PSU.
![](Lab_ATX_PSU.png) ![](Lab_ATX_PSU.png)
--- <a name="TOP"></a>
## Laser Load ## Laser Load
15kV dummy load for testing CO2 laser PSUs 15kV dummy load for testing CO2 laser PSUs
![](Laser_load.png) ![](Laser_load.png)
---
## MainsBreakOutBox ## MainsBreakOutBox
13A socket break out box with 4mm jacks to measure voltage and / or load current and earth leakage current. 13A socket break out box with 4mm jacks to measure voltage and / or load current and earth leakage current.
![](MainsBreakOutBox.png) ![](MainsBreakOutBox.png)
---
## Mains Box ## Mains Box
Mains isolated and variable supply with metering. Mains isolated and variable supply with metering.
@ -56,14 +51,13 @@ Mains isolated and variable supply with metering.
![](Mains_Box.png) ![](Mains_Box.png)
--- <a name="TOP"></a>
## Turntable ## Turntable
WiFi enabled remote control turntable for photography WiFi enabled remote control turntable for photography
![](Turntable.png) ![](Turntable.png)
---
## Variac ## Variac
Motorised variac with WiFi control, see [hydraraptor.blogspot.com/2018/04/esp8266-spi-spy](https://hydraraptor.blogspot.com/2018/04/esp8266-spi-spy.html) Motorised variac with WiFi control, see [hydraraptor.blogspot.com/2018/04/esp8266-spi-spy](https://hydraraptor.blogspot.com/2018/04/esp8266-spi-spy.html)
@ -72,4 +66,3 @@ Motorised variac with WiFi control, see [hydraraptor.blogspot.com/2018/04/esp826
![](Variac.png) ![](Variac.png)
---

View File

@ -67,9 +67,9 @@ def gallery(force):
match = re.match(r"^(#+).*$", line) match = re.match(r"^(#+).*$", line)
if match: if match:
line = '#' + line line = '#' + line
print(line[:-1], file = output_file)
if line == '---\n': if line == '---\n':
break; break;
print(line[:-1], file = output_file)
else: else:
print(Fore.MAGENTA + "Can't find", document, Fore.WHITE); print(Fore.MAGENTA + "Can't find", document, Fore.WHITE);
with open(target_dir + "/readme.html", "wt") as html_file: with open(target_dir + "/readme.html", "wt") as html_file: