This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
HTML Examples | |
--> | |
<html> | |
<head> | |
<link rel="stylesheet" href="https://rawgit.com/Gorea235/4844ce9e603d34c82b2d1253b1a71799/raw/remote-image-slider.css"> | |
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" | |
crossorigin="anonymous"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*-*/ | |
// This file was derived from | |
// http://forum.keenswh.com/threads/guide-setting-up-visual-studio-for-programmable-block-scripting.7225319/ | |
// Huge credit to them for getting the basic information I needed | |
/* Requires references to (<SE Install> = space engineers install) | |
* <SE Install>\Sandbox.Common.dll | |
* <SE Install>\Sandbox.Game.dll | |
* <SE Install>\VRage.Game.dll | |
* <SE Install>\VRage.Math.dll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A script to edit space engineers source files to a copiable format to paste into | |
the programmable blocks. Whitespace and comments (both single line and multiline) | |
are removed (all contents inside double quoted strings are preserved), and anything | |
between the following comments are removed also: | |
/*-*/<content>/*-*/ | |
(repeatable). This enables the automatic removal of usings and namespaces. | |
""" | |
import os | |
import re |
NewerOlder