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
diff --git a/xcode/cinder.xcodeproj/project.pbxproj b/xcode/cinder.xcodeproj/project.pbxproj | |
index fad0215..e66892c 100644 | |
--- a/xcode/cinder.xcodeproj/project.pbxproj | |
+++ b/xcode/cinder.xcodeproj/project.pbxproj | |
@@ -3,7 +3,7 @@ | |
archiveVersion = 1; | |
classes = { | |
}; | |
- objectVersion = 45; | |
+ objectVersion = 46; |
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
diff --git a/generate.c b/generate.c | |
index 8e82afd..f3a1bd9 100644 | |
--- a/generate.c | |
+++ b/generate.c | |
@@ -629,49 +629,51 @@ static int | |
linkyformat(MMIOT *f, Cstring text, int image, Footnote *ref) | |
{ | |
linkytype *tag; | |
- | |
+ |
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
diff --git a/generate.c b/generate.c | |
index 8e82afd..f3a1bd9 100644 | |
--- a/generate.c | |
+++ b/generate.c | |
@@ -652,6 +652,7 @@ linkyformat(MMIOT *f, Cstring text, int image, Footnote *ref) | |
if ( f->flags & IS_LABEL ) | |
___mkd_reparse(T(text), S(text), tag->flags, f, 0); | |
else if ( tag->link_pfx ) { | |
+ if (ref) { | |
printlinkyref(f, tag, T(ref->link), S(ref->link)); |
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
diff --git a/templates/default/publish.js b/templates/default/publish.js | |
index 2adf9e2..6b3e2f4 100644 | |
--- a/templates/default/publish.js | |
+++ b/templates/default/publish.js | |
@@ -12,8 +12,10 @@ | |
@param {Tutorial} tutorials | |
*/ | |
publish = function(data, opts, tutorials) { | |
+ var defaultTemplatePath = 'templates/default'; | |
+ var templatePath = (opts.template) ? opts.template : defaultTemplate; |
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
# http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4 | |
TARGET_NAME=<< name of your target or an environment variable >> | |
CONFIGURATION=Release | |
DEVICE=iphoneos | |
SIMULATOR=iphonesimulator | |
FAT=universal | |
OUTPUT=build | |
LIBRARY_NAME=lib${TARGET_NAME}.a |
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
testing |
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
#import <UIKit/UIKit.h> | |
#import "FlipCounterView.h" | |
void SplitTimeIntervalIntoComponents(NSTimeInterval t, int* hours, int* minutes, int* seconds); | |
@protocol CountdownViewDelegate; | |
@interface CountdownView : UIView |
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
function gitprompt() { | |
local NONE="\033[0m" # unsets color to term's fg color | |
# regular colors | |
local K="\033[0;30m" # black | |
local R="\033[0;31m" # red | |
local G="\033[0;32m" # green | |
local Y="\033[0;33m" # yellow | |
local B="\033[0;34m" # blue | |
local M="\033[0;35m" # magenta |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>bcc + webrtc</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> |
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
sudo su - | |
# install node | |
yum -y install git-all | |
# latest | |
cd /opt |