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)
---
## HydraBot
Current state of HydraRaptor after being modified for laser engraving.
![](HydraBot.png)
---
## IOT 50V PSU
WiFi controllable PSU
![](IOT_50V_PSU.png)
---
## Lab 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)
---
<a name="TOP"></a>
## Laser Load
15kV dummy load for testing CO2 laser PSUs
![](Laser_load.png)
---
## MainsBreakOutBox
13A socket break out box with 4mm jacks to measure voltage and / or load current and earth leakage current.
![](MainsBreakOutBox.png)
---
## Mains Box
Mains isolated and variable supply with metering.
@ -56,14 +51,13 @@ Mains isolated and variable supply with metering.
![](Mains_Box.png)
---
<a name="TOP"></a>
## Turntable
WiFi enabled remote control turntable for photography
![](Turntable.png)
---
## 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)
@ -72,4 +66,3 @@ Motorised variac with WiFi control, see [hydraraptor.blogspot.com/2018/04/esp826
![](Variac.png)
---

View File

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