Project

General

Profile

Task #3036

Updated by Ram Kordale over 1 year ago

sH is currently 'Table of Contents->Heading->Remaining-sections'. From now on, please remove return only the first part 'Table of Contents->' from every purple link result. 'Remaining-sections'for sH. 
 return the section hierarchy by removing the sname and ssname if the section hierarchical level >= '3'. 
 ex: 
 In the current implementation, sH is returned like this, 
     { 
         "url": "https://www.youtube.com/watch?v=b7JzgybKvys", 
         "sH": "Table Of Contents -> Python -> Inner class -> class" 
     } 
 So, Add the implementation to get the sH like this,  
     { 
         "url": "https://www.youtube.com/watch?v=b7JzgybKvys", 
         "sH": "Inner class -> class" 
     }

Back