Making Arduino resources linked data

How about making the Tools->Copy For forum exporting code in a Linked Data (TED Talks) matter?

Actually maybe make all references more 'linked'

I made an example using a slightly modified Loop sketch:

/*

#define num_pins 6 // the number of pins (i.e. the length of the array)
int timer = 100; // The higher the number, the slower the timing.
byte pins[] = { 2, 3, 4, 5, 6, 7 };// an array of pin numbers

void setup()
{
for (byte i = 0; i < num_pins; i++) // the array elements are numbered from 0 to num_pins - 1
pinMode(pins*, OUTPUT); // set each pin as an output*
}
void loop()
{

look nice as idea, but I don't know what's the point, if you're using code from arduino IDE to post in arduino-related forums, probably every people reading your post knows what means TRUE, FALSE, digitalWrite, etc.

Anyway as option, you can modify arduino ide :smiley:

maybe is not a bad idea to build a new arduino IDE based on the actual code, I like for example a button to quickly add libraries to the lib folder, and other easy things, even other not so easy like tabs per pde file as a sketch, etc etc ;D