From db89b32ff9e9619b42d118f30382616399f5115a Mon Sep 17 00:00:00 2001 From: Xianying Tan Date: Thu, 16 Apr 2020 14:46:03 +0800 Subject: [PATCH] better call source(..., local=TRUE) so that it won't pollute the global environment --- index.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.Rmd b/index.Rmd index d45881f..d681e83 100644 --- a/index.Rmd +++ b/index.Rmd @@ -53,10 +53,10 @@ links <- c() # text output and the other loads up our data from either googlesheets or csvs # Functions for building sections from CSV data -source('parsing_functions.R') +source('parsing_functions.R', local = TRUE) # Load data for CV/Resume -source('gather_data.R') +source('gather_data.R', local = TRUE) ```